guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-core/doc ChangeLog scheme-data.texi


From: Martin Grabmueller
Subject: guile/guile-core/doc ChangeLog scheme-data.texi
Date: Tue, 03 Jul 2001 23:11:20 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Martin Grabmueller <address@hidden>     01/07/03 23:11:19

Modified files:
        guile-core/doc : ChangeLog scheme-data.texi 

Log message:
        * scheme-data.texi (Hook Reference): Removed documentation for
        `make-hook-with-name', which does note exist.  Added note about
        unspecified return values to all procedure documentation

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/ChangeLog.diff?cvsroot=OldCVS&tr1=1.109&tr2=1.110&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/doc/scheme-data.texi.diff?cvsroot=OldCVS&tr1=1.25&tr2=1.26&r1=text&r2=text

Patches:
Index: guile/guile-core/doc/ChangeLog
diff -u guile/guile-core/doc/ChangeLog:1.109 
guile/guile-core/doc/ChangeLog:1.110
--- guile/guile-core/doc/ChangeLog:1.109        Mon Jul  2 10:52:43 2001
+++ guile/guile-core/doc/ChangeLog      Tue Jul  3 23:11:19 2001
@@ -1,3 +1,9 @@
+2001-07-04  Martin Grabmueller  <address@hidden>
+
+       * scheme-data.texi (Hook Reference): Removed documentation for
+       `make-hook-with-name', which does note exist.  Added note about
+       unspecified return values to all procedure documentation
+
 2001-07-02  Martin Grabmueller  <address@hidden>
 
        * srfi-modules.texi (SRFI-1 Fold and Map): Documented extended
Index: guile/guile-core/doc/scheme-data.texi
diff -u guile/guile-core/doc/scheme-data.texi:1.25 
guile/guile-core/doc/scheme-data.texi:1.26
--- guile/guile-core/doc/scheme-data.texi:1.25  Sat Jun 30 06:45:22 2001
+++ guile/guile-core/doc/scheme-data.texi       Tue Jul  3 23:11:19 2001
@@ -5179,15 +5179,10 @@
 When calling @code{hook->list}, the procedures in the resulting list are
 in the same order as they would have been called by @code{run-hook}.
 
address@hidden primitive make-hook-with-name name [n_args]
-Create a named hook with the name @var{name} for storing
-procedures of arity @var{n_args}.  @var{n_args} defaults to
-zero.
address@hidden deffn
-
 @deffn primitive make-hook [n_args]
-Create a hook for storing procedure of arity
address@hidden  @var{n_args} defaults to zero.
+Create a hook for storing procedure of arity @var{n_args}.
address@hidden defaults to zero.  The returned value is a hook
+object to be used with the other hook procedures.
 @end deffn
 
 @deffn primitive hook? x
@@ -5202,21 +5197,24 @@
 @deffn primitive add-hook! hook proc [append_p]
 Add the procedure @var{proc} to the hook @var{hook}. The
 procedure is added to the end if @var{append_p} is true,
-otherwise it is added to the front.
+otherwise it is added to the front.  The return value of this
+procedure is not specified.
 @end deffn
 
 @deffn primitive remove-hook! hook proc
-Remove the procedure @var{proc} from the hook @var{hook}.
+Remove the procedure @var{proc} from the hook @var{hook}.  The
+return value of this procedure is not specified.
 @end deffn
 
 @deffn primitive reset-hook! hook
-Remove all procedures from the hook @var{hook}.
+Remove all procedures from the hook @var{hook}.  The return
+value of this procedure is not specified.
 @end deffn
 
 @deffn primitive run-hook hook . args
 Apply all procedures from the hook @var{hook} to the arguments
 @var{args}.  The order of the procedure application is first to
-last.
+last.  The return value of this procedure is not specified.
 @end deffn
 
 @deffn primitive hook->list hook



reply via email to

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