diff options
author | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-03-16 10:00:17 +0000 |
---|---|---|
committer | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-03-16 10:00:17 +0000 |
commit | 5352393c556ff4e4be85cacf4b6dd32e93b24bce (patch) | |
tree | 5a0ddf5e9148dc856087dfe06ae0fad1e887c029 /libguile/goops.c | |
parent | 1543613f4bb8576a9630c724b0c896355171322b (diff) | |
download | guile-5352393c556ff4e4be85cacf4b6dd32e93b24bce.tar.gz |
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
Diffstat (limited to 'libguile/goops.c')
-rw-r--r-- | libguile/goops.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/libguile/goops.c b/libguile/goops.c index ff75a6395..f63a4a42f 100644 --- a/libguile/goops.c +++ b/libguile/goops.c @@ -285,9 +285,9 @@ maplist (SCM ls) SCM_DEFINE (scm_sys_compute_slots, "%compute-slots", 1, 0, 0, (SCM class), - "Return a list consisting of the names of all slots belonging\n" - "to class CLASS, i. e. the slots of CLASS and of all of its\n" - "superclasses.") + "Return a list consisting of the names of all slots belonging to\n" + "class @var{class}, i. e. the slots of @var{class} and of all of\n" + "its superclasses.") #define FUNC_NAME s_scm_sys_compute_slots { SCM_VALIDATE_CLASS (1, class); @@ -367,11 +367,12 @@ scm_i_get_keyword (SCM key, SCM l, int len, SCM default_value, const char *subr) SCM_DEFINE (scm_get_keyword, "get-keyword", 3, 0, 0, (SCM key, SCM l, SCM default_value), - "Determine an associated value for the keyword KEY from the\n" - "list L. The list L has to consist of an even number of\n" - "elements, where, starting with the first, every second element\n" - "is a keyword, followed by its associated value. If L does not\n" - "hold a value for KEY, the value DEFAULT_VALUE is returned.") + "Determine an associated value for the keyword @var{key} from\n" + "the list @var{l}. The list @var{l} has to consist of an even\n" + "number of elements, where, starting with the first, every\n" + "second element is a keyword, followed by its associated value.\n" + "If @var{l} does not hold a value for @var{key}, the value\n" + "@var{default_value} is returned.") #define FUNC_NAME s_scm_get_keyword { int len; |