[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
guile/guile-core/libguile ChangeLog hooks.c
From: |
Martin Grabmueller |
Subject: |
guile/guile-core/libguile ChangeLog hooks.c |
Date: |
Tue, 03 Jul 2001 23:13:11 -0700 |
CVSROOT: /cvs
Module name: guile
Changes by: Martin Grabmueller <address@hidden> 01/07/03 23:13:10
Modified files:
guile-core/libguile: ChangeLog hooks.c
Log message:
* hooks.c (scm_make_hook, scm_add_hook_x),
(scm_remove_hook_x, scm_reset_hook_x, scm_run_hook): Added return
value info to the docstrings.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/ChangeLog.diff?cvsroot=OldCVS&tr1=1.1463&tr2=1.1464&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/hooks.c.diff?cvsroot=OldCVS&tr1=1.20&tr2=1.21&r1=text&r2=text
Patches:
Index: guile/guile-core/libguile/ChangeLog
diff -u guile/guile-core/libguile/ChangeLog:1.1463
guile/guile-core/libguile/ChangeLog:1.1464
--- guile/guile-core/libguile/ChangeLog:1.1463 Tue Jul 3 08:27:56 2001
+++ guile/guile-core/libguile/ChangeLog Tue Jul 3 23:13:10 2001
@@ -1,3 +1,9 @@
+2001-07-04 Martin Grabmueller <address@hidden>
+
+ * hooks.c (scm_make_hook, scm_add_hook_x),
+ (scm_remove_hook_x, scm_reset_hook_x, scm_run_hook): Added return
+ value info to the docstrings.
+
2001-07-03 Martin Grabmueller <address@hidden>
Some more compatibility patches for Windows.
@@ -29,7 +35,7 @@
last.
* gc.c (s_scm_map_free_list, scm_igc, scm_gc_sweep,
- init_heap_seg): Fixed signedness.
+ init_heap_seg): Fixed signedness.
(init_heap_seg): Replaced strange for-loop with a while loop.
Index: guile/guile-core/libguile/hooks.c
diff -u guile/guile-core/libguile/hooks.c:1.20
guile/guile-core/libguile/hooks.c:1.21
--- guile/guile-core/libguile/hooks.c:1.20 Wed Jun 27 18:11:58 2001
+++ guile/guile-core/libguile/hooks.c Tue Jul 3 23:13:10 2001
@@ -187,8 +187,9 @@
SCM_DEFINE (scm_make_hook, "make-hook", 0, 1, 0,
(SCM n_args),
- "Create a hook for storing procedure of arity\n"
- "@var{n_args}. @var{n_args} defaults to zero.")
+ "Create a hook for storing procedure of arity @var{n_args}.\n"
+ "@var{n_args} defaults to zero. The returned value is a hook\n"
+ "object to be used with the other hook procedures.")
#define FUNC_NAME s_scm_make_hook
{
int n;
@@ -235,7 +236,8 @@
(SCM hook, SCM proc, SCM append_p),
"Add the procedure @var{proc} to the hook @var{hook}. The\n"
"procedure is added to the end if @var{append_p} is true,\n"
- "otherwise it is added to the front.")
+ "otherwise it is added to the front. The return value of this\n"
+ "procedure is not specified.")
#define FUNC_NAME s_scm_add_hook_x
{
SCM arity, rest;
@@ -261,7 +263,8 @@
SCM_DEFINE (scm_remove_hook_x, "remove-hook!", 2, 0, 0,
(SCM hook, SCM proc),
- "Remove the procedure @var{proc} from the hook @var{hook}.")
+ "Remove the procedure @var{proc} from the hook @var{hook}. The\n"
+ "return value of this procedure is not specified.")
#define FUNC_NAME s_scm_remove_hook_x
{
SCM_VALIDATE_HOOK (1, hook);
@@ -274,7 +277,8 @@
SCM_DEFINE (scm_reset_hook_x, "reset-hook!", 1, 0, 0,
(SCM hook),
- "Remove all procedures from the hook @var{hook}.")
+ "Remove all procedures from the hook @var{hook}. The return\n"
+ "value of this procedure is not specified.")
#define FUNC_NAME s_scm_reset_hook_x
{
SCM_VALIDATE_HOOK (1,hook);
@@ -288,7 +292,7 @@
(SCM hook, SCM args),
"Apply all procedures from the hook @var{hook} to the arguments\n"
"@var{args}. The order of the procedure application is first to\n"
- "last.")
+ "last. The return value of this procedure is not specified.")
#define FUNC_NAME s_scm_run_hook
{
SCM_VALIDATE_HOOK (1,hook);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- guile/guile-core/libguile ChangeLog hooks.c,
Martin Grabmueller <=