aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/eval.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8d78fc42d57..e36ebfd5218 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12000-11-29 Stefan Monnier <monnier@cs.yale.edu>
2
3 * eval.c (Frun_hooks): Allow 0 arguments.
4
12000-11-29 Gerd Moellmann <gerd@gnu.org> 52000-11-29 Gerd Moellmann <gerd@gnu.org>
2 6
3 * xterm.c (XTmouse_position) [USE_X_TOOLKIT]: When the mouse 7 * xterm.c (XTmouse_position) [USE_X_TOOLKIT]: When the mouse
diff --git a/src/eval.c b/src/eval.c
index 54ca9eb24b1..8d8b9b14d42 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -2140,7 +2140,7 @@ Thus, (apply '+ 1 2 '(3 4)) returns 10.")
2140 2140
2141enum run_hooks_condition {to_completion, until_success, until_failure}; 2141enum run_hooks_condition {to_completion, until_success, until_failure};
2142 2142
2143DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 1, MANY, 0, 2143DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 0, MANY, 0,
2144 "Run each hook in HOOKS. Major mode functions use this.\n\ 2144 "Run each hook in HOOKS. Major mode functions use this.\n\
2145Each argument should be a symbol, a hook variable.\n\ 2145Each argument should be a symbol, a hook variable.\n\
2146These symbols are processed in the order specified.\n\ 2146These symbols are processed in the order specified.\n\