diff options
| author | Stefan Monnier | 2000-11-29 18:47:42 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-11-29 18:47:42 +0000 |
| commit | 8b5176cda8d001047cc05a5daf27291ddc3e6955 (patch) | |
| tree | b502023a8bd9ced21eee7cc32190ecd7b2c6cc32 /src | |
| parent | f9396e03de25577052794a47714ce5761d0e54b4 (diff) | |
| download | emacs-8b5176cda8d001047cc05a5daf27291ddc3e6955.tar.gz emacs-8b5176cda8d001047cc05a5daf27291ddc3e6955.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/eval.c | 2 |
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 @@ | |||
| 1 | 2000-11-29 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * eval.c (Frun_hooks): Allow 0 arguments. | ||
| 4 | |||
| 1 | 2000-11-29 Gerd Moellmann <gerd@gnu.org> | 5 | 2000-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 | ||
| 2141 | enum run_hooks_condition {to_completion, until_success, until_failure}; | 2141 | enum run_hooks_condition {to_completion, until_success, until_failure}; |
| 2142 | 2142 | ||
| 2143 | DEFUN ("run-hooks", Frun_hooks, Srun_hooks, 1, MANY, 0, | 2143 | DEFUN ("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\ |
| 2145 | Each argument should be a symbol, a hook variable.\n\ | 2145 | Each argument should be a symbol, a hook variable.\n\ |
| 2146 | These symbols are processed in the order specified.\n\ | 2146 | These symbols are processed in the order specified.\n\ |