guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/doc ChangeLog data-rep.texi sc...


From: Neil Jerram
Subject: guile/guile-core/doc ChangeLog data-rep.texi sc...
Date: Wed, 16 May 2001 12:30:58 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Neil Jerram <address@hidden>    01/05/16 12:30:57

Modified files:
        guile-core/doc : ChangeLog data-rep.texi scheme-control.texi 
                         scheme-io.texi scheme-procedures.texi 
                         srfi-modules.texi 

Log message:
        * Fix uses of @itemize without a format specifier.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/ChangeLog.diff?cvsroot=OldCVS&tr1=1.89&tr2=1.90&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/data-rep.texi.diff?cvsroot=OldCVS&tr1=1.23&tr2=1.24&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/scheme-control.texi.diff?cvsroot=OldCVS&tr1=1.13&tr2=1.14&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/scheme-io.texi.diff?cvsroot=OldCVS&tr1=1.13&tr2=1.14&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/scheme-procedures.texi.diff?cvsroot=OldCVS&tr1=1.12&tr2=1.13&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/srfi-modules.texi.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text

Patches:
Index: guile/guile-core/doc/ChangeLog
diff -u guile/guile-core/doc/ChangeLog:1.89 guile/guile-core/doc/ChangeLog:1.90
--- guile/guile-core/doc/ChangeLog:1.89 Wed May 16 11:08:12 2001
+++ guile/guile-core/doc/ChangeLog      Wed May 16 12:30:57 2001
@@ -1,3 +1,11 @@
+2001-05-16  Neil Jerram  <address@hidden>
+
+       * data-rep.texi, srfi-modules.texi (SRFI-14 Iterating Over
+       Character Sets), scheme-io.texi (Block Reading and Writing),
+       scheme-control.texi (Lazy Catch), scheme-procedures.texi (Internal
+       Macros): Add @bullet to @itemize usages.  (Thanks for Masao
+       Uebayashi for the bug report!)
+
 2001-05-15  Martin Grabmueller  <address@hidden>
 
        * scripts.texi (Invoking Guile): Added docs for --use-srfi.
Index: guile/guile-core/doc/data-rep.texi
diff -u guile/guile-core/doc/data-rep.texi:1.23 
guile/guile-core/doc/data-rep.texi:1.24
--- guile/guile-core/doc/data-rep.texi:1.23     Thu Apr 26 11:26:28 2001
+++ guile/guile-core/doc/data-rep.texi  Wed May 16 12:30:57 2001
@@ -46,7 +46,7 @@
 @c essay @sp 10
 @c essay @comment The title is printed in a large font.
 @c essay @title Data Representation in Guile
address@hidden essay @subtitle $Id: data-rep.texi,v 1.23 2001/04/26 18:26:28 
ossau Exp $
address@hidden essay @subtitle $Id: data-rep.texi,v 1.24 2001/05/16 19:30:57 
ossau Exp $
 @c essay @subtitle For use with Guile @value{VERSION}
 @c essay @author Jim Blandy
 @c essay @author Free Software Foundation
@@ -1235,7 +1235,7 @@
 non-immediate Scheme object @var{x} as raw data.  It is illegal, to
 access cell entries that hold Scheme objects by using these macros.  For
 convenience, the following macros are also provided.
address@hidden
address@hidden @bullet
 @item
 SCM_CELL_WORD_0 (@var{x}) @result{} SCM_CELL_WORD (@var{x}, 0)
 @item
@@ -1252,7 +1252,7 @@
 non-immediate Scheme object @var{x} as a Scheme object.  It is illegal,
 to access cell entries that do not hold Scheme objects by using these
 macros.  For convenience, the following macros are also provided.
address@hidden
address@hidden @bullet
 @item
 SCM_CELL_OBJECT_0 (@var{x}) @result{} SCM_CELL_OBJECT (@var{x}, 0)
 @item
@@ -1274,7 +1274,7 @@
 has to be made sure that @var{w} contains a cell type information which
 does not describe a Scheme object.  For convenience, the following
 macros are also provided.
address@hidden
address@hidden @bullet
 @item
 SCM_SET_CELL_WORD_0 (@var{x}, @var{w}) @result{} SCM_SET_CELL_WORD
 (@var{x}, 0, @var{w})
@@ -1298,7 +1298,7 @@
 entry 0 the writing of a Scheme object into this cell is only allowed
 if the cell forms a Scheme pair.  For convenience, the following macros
 are also provided.
address@hidden
address@hidden @bullet
 @item
 SCM_SET_CELL_OBJECT_0 (@var{x}, @var{o}) @result{} SCM_SET_CELL_OBJECT
 (@var{x}, 0, @var{o})
Index: guile/guile-core/doc/scheme-control.texi
diff -u guile/guile-core/doc/scheme-control.texi:1.13 
guile/guile-core/doc/scheme-control.texi:1.14
--- guile/guile-core/doc/scheme-control.texi:1.13       Wed May 16 11:08:12 2001
+++ guile/guile-core/doc/scheme-control.texi    Wed May 16 12:30:57 2001
@@ -604,7 +604,7 @@
 exception type, normal case code and handler procedure, but differs in
 two important respects.
 
address@hidden
address@hidden @bullet
 @item
 The handler procedure is executed without unwinding the call stack from
 the context of the @code{throw} expression that caused the handler to be
Index: guile/guile-core/doc/scheme-io.texi
diff -u guile/guile-core/doc/scheme-io.texi:1.13 
guile/guile-core/doc/scheme-io.texi:1.14
--- guile/guile-core/doc/scheme-io.texi:1.13    Fri May  4 14:54:00 2001
+++ guile/guile-core/doc/scheme-io.texi Wed May 16 12:30:57 2001
@@ -415,7 +415,7 @@
 string @var{str}.  This procedure is scsh-compatible
 and can efficiently read large strings.  It will:
 
address@hidden
address@hidden @bullet
 @item
 attempt to fill the entire string, unless the @var{start}
 and/or @var{end} arguments are supplied.  i.e., @var{start}
Index: guile/guile-core/doc/scheme-procedures.texi
diff -u guile/guile-core/doc/scheme-procedures.texi:1.12 
guile/guile-core/doc/scheme-procedures.texi:1.13
--- guile/guile-core/doc/scheme-procedures.texi:1.12    Wed May 16 11:08:12 2001
+++ guile/guile-core/doc/scheme-procedures.texi Wed May 16 12:30:57 2001
@@ -672,7 +672,7 @@
 with @code{foo} being some flavour of macro, one of the following things
 will happen when the expression is evaluated.
 
address@hidden
address@hidden @bullet
 @item
 When @code{foo} has been defined to be an @dfn{acro}, the procedure used
 in the acro definition of @code{foo} is passed the whole expression and
Index: guile/guile-core/doc/srfi-modules.texi
diff -u guile/guile-core/doc/srfi-modules.texi:1.3 
guile/guile-core/doc/srfi-modules.texi:1.4
--- guile/guile-core/doc/srfi-modules.texi:1.3  Wed May 16 11:08:12 2001
+++ guile/guile-core/doc/srfi-modules.texi      Wed May 16 12:30:57 2001
@@ -1033,7 +1033,7 @@
 @deffn primitive char-set-unfold p f g seed [base_cs]
 @deffnx primitive char-set-unfold! p f g seed base_cs
 This is a fundamental constructor for character sets.
address@hidden
address@hidden @bullet
 @item @var{g} is used to generate a series of ``seed'' values 
 from the initial seed: @var{seed}, (@var{g} @var{seed}),
 (@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}), @dots{}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]