* srfi-14.c, srfi-13.c: Added @bullet to various @itemize lists.
authorMartin Grabmüller <mgrabmue@cs.tu-berlin.de>
Wed, 2 May 2001 21:47:36 +0000 (21:47 +0000)
committerMartin Grabmüller <mgrabmue@cs.tu-berlin.de>
Wed, 2 May 2001 21:47:36 +0000 (21:47 +0000)
* srfi-10.scm: Typo fix.

srfi/ChangeLog
srfi/srfi-10.scm
srfi/srfi-13.c
srfi/srfi-14.c

index 0692786..2b5eade 100644 (file)
@@ -1,3 +1,9 @@
+2001-05-02  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * srfi-14.c, srfi-13.c: Added @bullet to various @itemize lists.
+
+       * srfi-10.scm: Typo fix.
+
 2001-05-02  Rob Browning  <rlb@cs.utexas.edu>
 
        * srfi-11.scm (let-values): fix (a b c . d) case.  Thanks Martin.
index 0ce743a..8efef26 100644 (file)
@@ -37,7 +37,7 @@
 ;;; (define f '#,(file "/etc/passwd"))
 ;;; (read-line f)
 ;;; =>
-;;; :root:x:0:0:root:/root:/bin/bash"
+;;; "root:x:0:0:root:/root:/bin/bash"
 ;;;
 ;;; Please note the quote before the #,(file ...) expression.  This is
 ;;; necessary because ports are not self-evaluating in Guile.
index b50ef08..e7fe76c 100644 (file)
@@ -743,7 +743,7 @@ SCM_DEFINE (scm_string_trim_both, "string-trim-both", 1, 3, 0,
            "Trim @var{s} by skipping over all characters on both sides of\n"
            "the string that satisfy the parameter @var{char_pred}:\n"
            "\n"
-           "@itemize\n"
+           "@itemize @bullet\n"
            "@item\n"
            "if it is the character @var{ch}, characters equal to @var{ch}\n"
            "are trimmed,\n"
@@ -1614,7 +1614,7 @@ SCM_DEFINE (scm_string_indexS, "string-index", 2, 2, 0,
            "Search through the string @var{s} from left to right, returning\n"
            "the index of the first occurence of a character which\n"
            "\n"
-           "@itemize\n"
+           "@itemize @bullet\n"
            "@item\n"
            "equals @var{char_pred}, if it is character,\n"
            "\n"
@@ -2527,7 +2527,7 @@ SCM_DEFINE (scm_string_fold_right, "string-fold-right", 3, 2, 0,
 
 SCM_DEFINE (scm_string_unfold, "string-unfold", 4, 2, 0,
            (SCM p, SCM f, SCM g, SCM seed, SCM base, SCM make_final),
-           "@itemize\n"
+           "@itemize @bullet\n"
            "@item @var{g} is used to generate a series of @emph{seed}\n"
            "values from the initial @var{seed}: @var{seed}, (@var{g}\n"
            "@var{seed}), (@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}),\n"
@@ -2589,7 +2589,7 @@ SCM_DEFINE (scm_string_unfold, "string-unfold", 4, 2, 0,
 
 SCM_DEFINE (scm_string_unfold_right, "string-unfold-right", 4, 2, 0,
            (SCM p, SCM f, SCM g, SCM seed, SCM base, SCM make_final),
-           "@itemize\n"
+           "@itemize @bullet\n"
            "@item @var{g} is used to generate a series of @emph{seed}\n"
            "values from the initial @var{seed}: @var{seed}, (@var{g}\n"
            "@var{seed}), (@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}),\n"
index 3755608..9fb6b48 100644 (file)
@@ -305,7 +305,7 @@ SCM_DEFINE (scm_char_set_fold, "char-set-fold", 3, 0, 0,
 SCM_DEFINE (scm_char_set_unfold, "char-set-unfold", 4, 1, 0,
            (SCM p, SCM f, SCM g, SCM seed, SCM base_cs),
            "This is a fundamental constructor for character sets.\n"
-           "@itemize\n"
+           "@itemize @bullet\n"
            "@item @var{g} is used to generate a series of ``seed'' values \n"
            "from the initial seed: @var{seed}, (@var{g} @var{seed}),\n"
            "(@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}), @dots{}\n"
@@ -349,7 +349,7 @@ SCM_DEFINE (scm_char_set_unfold, "char-set-unfold", 4, 1, 0,
 SCM_DEFINE (scm_char_set_unfold_x, "char-set-unfold!", 5, 0, 0,
            (SCM p, SCM f, SCM g, SCM seed, SCM base_cs),
            "This is a fundamental constructor for character sets.\n"
-           "@itemize\n"
+           "@itemize @bullet\n"
            "@item @var{g} is used to generate a series of ``seed'' values\n"
            "from the initial seed: @var{seed}, (@var{g} @var{seed}), \n"
            "(@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}), @dots{}\n"