summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--srfi/ChangeLog6
-rw-r--r--srfi/srfi-10.scm2
-rw-r--r--srfi/srfi-13.c8
-rw-r--r--srfi/srfi-14.c4
4 files changed, 13 insertions, 7 deletions
diff --git a/srfi/ChangeLog b/srfi/ChangeLog
index 0692786ca..2b5eade25 100644
--- a/srfi/ChangeLog
+++ b/srfi/ChangeLog
@@ -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.
diff --git a/srfi/srfi-10.scm b/srfi/srfi-10.scm
index 0ce743af3..8efef2693 100644
--- a/srfi/srfi-10.scm
+++ b/srfi/srfi-10.scm
@@ -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.
diff --git a/srfi/srfi-13.c b/srfi/srfi-13.c
index b50ef085c..e7fe76c57 100644
--- a/srfi/srfi-13.c
+++ b/srfi/srfi-13.c
@@ -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"
diff --git a/srfi/srfi-14.c b/srfi/srfi-14.c
index 3755608ca..9fb6b4847 100644
--- a/srfi/srfi-14.c
+++ b/srfi/srfi-14.c
@@ -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"