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/gc.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/gc.c')
-rw-r--r-- | libguile/gc.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libguile/gc.c b/libguile/gc.c index 9fe4e0a8a..264b9f3be 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -515,8 +515,9 @@ map_free_list (scm_freelist_t *master, SCM freelist) SCM_DEFINE (scm_map_free_list, "map-free-list", 0, 0, 0, (), - "Print debugging information about the free-list.\n" - "`map-free-list' is only included in --enable-guile-debug builds of Guile.") + "Print debugging information about the free-list.\n" + "@code{map-free-list} is only included in\n" + "@code{--enable-guile-debug} builds of Guile.") #define FUNC_NAME s_scm_map_free_list { int i; @@ -595,8 +596,9 @@ free_list_lengths (char *title, scm_freelist_t *master, SCM freelist) SCM_DEFINE (scm_free_list_length, "free-list-length", 0, 0, 0, (), - "Print debugging information about the free-list.\n" - "`free-list-length' is only included in --enable-guile-debug builds of Guile.") + "Print debugging information about the free-list.\n" + "@code{free-list-length} is only included in\n" + "@code{--enable-guile-debug} builds of Guile.") #define FUNC_NAME s_scm_free_list_length { free_list_lengths ("1-cells", &scm_master_freelist, scm_freelist); |