guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-core/doc ChangeLog Makefile.am guil...


From: Martin Grabmueller
Subject: guile/guile-core/doc ChangeLog Makefile.am guil...
Date: Wed, 02 May 2001 14:50:15 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Martin Grabmueller <address@hidden>     01/05/02 14:50:15

Modified files:
        guile-core/doc : ChangeLog Makefile.am guile.texi 
                         srfi-13-14.texi 
Added files:
        guile-core/doc : repl-modules.texi srfi-modules.texi 

Log message:
        * srfi-13-14.texi: Added @bullet to various @itemize lists.
        
        * srfi-modules.texi (SRFI Support): New file and chapter.
        
        * Makefile.am (guile_TEXINFOS): Added repl-modules.texi and
        srfi-modules.texi.
        
        * guile.texi (Top): New menu entries for the new chapters.
        (Top): @includes for the new chapters.
        (Top): New menu entry for `SRFI Support', @include for
        `srfi-modules.texi'.
        
        * repl-modules.texi: New file.
        (Readline Support): New chapter for (ice-9 readline).
        (Value History): New chapter for (ice-9 history).

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/repl-modules.texi?cvsroot=OldCVS&rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/srfi-modules.texi?cvsroot=OldCVS&rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/ChangeLog.diff?cvsroot=OldCVS&tr1=1.78&tr2=1.79&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/Makefile.am.diff?cvsroot=OldCVS&tr1=1.16&tr2=1.17&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/guile.texi.diff?cvsroot=OldCVS&tr1=1.7&tr2=1.8&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/srfi-13-14.texi.diff?cvsroot=OldCVS&tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: guile/guile-core/doc/ChangeLog
diff -u guile/guile-core/doc/ChangeLog:1.78 guile/guile-core/doc/ChangeLog:1.79
--- guile/guile-core/doc/ChangeLog:1.78 Wed May  2 07:44:38 2001
+++ guile/guile-core/doc/ChangeLog      Wed May  2 14:50:15 2001
@@ -1,5 +1,23 @@
 2001-05-02  Martin Grabmueller  <address@hidden>
 
+       * srfi-13-14.texi: Added @bullet to various @itemize lists.
+
+       * srfi-modules.texi (SRFI Support): New file and chapter.
+
+       * Makefile.am (guile_TEXINFOS): Added repl-modules.texi and
+       srfi-modules.texi.
+
+       * guile.texi (Top): New menu entries for the new chapters.
+       (Top): @includes for the new chapters.
+       (Top): New menu entry for `SRFI Support', @include for
+       `srfi-modules.texi'.
+
+       * repl-modules.texi: New file.
+       (Readline Support): New chapter for (ice-9 readline).
+       (Value History): New chapter for (ice-9 history).
+
+2001-05-02  Martin Grabmueller  <address@hidden>
+
        * scheme-modules.texi (Dynamic Libraries): Renamed from `Dynamic
        Linking from Marius''.
        (The Guile module system): Removed obsolete naming convention.
Index: guile/guile-core/doc/Makefile.am
diff -u guile/guile-core/doc/Makefile.am:1.16 
guile/guile-core/doc/Makefile.am:1.17
--- guile/guile-core/doc/Makefile.am:1.16       Sat Apr 28 16:38:52 2001
+++ guile/guile-core/doc/Makefile.am    Wed May  2 14:50:15 2001
@@ -35,7 +35,8 @@
        scheme-reading.texi scheme-indices.texi slib.texi posix.texi \
        expect.texi scsh.texi tcltk.texi scripts.texi gh.texi scm.texi \
        appendices.texi indices.texi script-getopt.texi data-rep.texi \
-       extend.texi srfi-13-14.texi AUTHORS
+       extend.texi srfi-13-14.texi repl-modules.texi srfi-modules.texi \
+       AUTHORS
 
 guile_tut_TEXINFOS = guile-tut.texi AUTHORS
 
Index: guile/guile-core/doc/guile.texi
diff -u guile/guile-core/doc/guile.texi:1.7 guile/guile-core/doc/guile.texi:1.8
--- guile/guile-core/doc/guile.texi:1.7 Sat Apr 28 16:38:52 2001
+++ guile/guile-core/doc/guile.texi     Wed May  2 14:50:15 2001
@@ -80,7 +80,7 @@
 @sp 10
 @comment The title is printed in a large font.
 @title Guile Reference Manual
address@hidden $Id: guile.texi,v 1.7 2001/04/28 23:38:52 ossau Exp $
address@hidden $Id: guile.texi,v 1.8 2001/05/02 21:50:15 mgrabmue Exp $
 @subtitle For use with Guile @value{VERSION}
 @include AUTHORS
 
@@ -168,7 +168,10 @@
 
 * SLIB::                        Using the SLIB Scheme library.
 * POSIX::                       POSIX system calls and networking.
+* SRFI Support::                Support for various SRFIs.
 * SRFI-13/14::                  String library and character set library.
+* Readline Support::            Module for using the readline library.
+* Value History::               Maintaining a value history in the REPL.
 * Expect::                     Controlling interactive programs with Guile.
 * The Scheme shell (scsh)::
        The SCSH compatibility module has been made an
@@ -249,7 +252,9 @@
 
 @include slib.texi
 @include posix.texi
address@hidden srfi-modules.texi
 @include srfi-13-14.texi
address@hidden repl-modules.texi
 @include expect.texi
 @include scsh.texi
 @include tcltk.texi
Index: guile/guile-core/doc/srfi-13-14.texi
diff -u guile/guile-core/doc/srfi-13-14.texi:1.2 
guile/guile-core/doc/srfi-13-14.texi:1.3
--- guile/guile-core/doc/srfi-13-14.texi:1.2    Thu Apr 26 12:59:33 2001
+++ guile/guile-core/doc/srfi-13-14.texi        Wed May  2 14:50:15 2001
@@ -420,7 +420,7 @@
 Search through the string @var{s} from left to right (right to left),
 returning the index of the first (last) occurence of a character which
 
address@hidden
address@hidden @bullet
 @item
 equals @var{char_pred}, if it is character,
 
@@ -438,7 +438,7 @@
 Search through the string @var{s} from left to right (right to left),
 returning the index of the first (last) occurence of a character which
 
address@hidden
address@hidden @bullet
 @item
 does not equal @var{char_pred}, if it is character,
 
@@ -596,7 +596,7 @@
 @deffn primitive string-unfold p f g seed [base make_final]
 @deffnx primitive string-unfold-right p f g seed [base make_final]
 These are the fundamental string constructors.
address@hidden
address@hidden @bullet
 @item @var{g} is used to generate a series of @emph{seed}
 values from the initial @var{seed}: @var{seed}, (@var{g}
 @var{seed}), (@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}),



reply via email to

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