diff options
| author | Simon Marshall | 1995-07-31 12:02:51 +0000 |
|---|---|---|
| committer | Simon Marshall | 1995-07-31 12:02:51 +0000 |
| commit | f1b6e5fc820e9f22db1a59f90148aec14187916f (patch) | |
| tree | ce077b4eeac763f055b80f440200b7ba4f98e73e /src | |
| parent | ba1cc309d1fde002c69a9eec33b84e28dc4f2e82 (diff) | |
| download | emacs-f1b6e5fc820e9f22db1a59f90148aec14187916f.tar.gz emacs-f1b6e5fc820e9f22db1a59f90148aec14187916f.zip | |
Declare hook running functions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h index 79ce061757e..03a752d9034 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1442,11 +1442,17 @@ extern Lisp_Object Vinhibit_quit, Qinhibit_quit, Vquit_flag; | |||
| 1442 | extern Lisp_Object Vmocklisp_arguments, Qmocklisp, Qmocklisp_arguments; | 1442 | extern Lisp_Object Vmocklisp_arguments, Qmocklisp, Qmocklisp_arguments; |
| 1443 | extern Lisp_Object Vautoload_queue; | 1443 | extern Lisp_Object Vautoload_queue; |
| 1444 | extern Lisp_Object Vdebug_on_error; | 1444 | extern Lisp_Object Vdebug_on_error; |
| 1445 | /* To run a normal hook, do | 1445 | /* To run a normal hook, use the appropriate function from the list below. |
| 1446 | The calling convention: | ||
| 1447 | |||
| 1446 | if (!NILP (Vrun_hooks)) | 1448 | if (!NILP (Vrun_hooks)) |
| 1447 | call1 (Vrun_hooks, Qmy_funny_hook); */ | 1449 | call1 (Vrun_hooks, Qmy_funny_hook); |
| 1450 | |||
| 1451 | should no longer be used. */ | ||
| 1448 | extern Lisp_Object Vrun_hooks; | 1452 | extern Lisp_Object Vrun_hooks; |
| 1449 | extern Lisp_Object Frun_hooks_with_args (); | 1453 | extern Lisp_Object Frun_hooks (), Frun_hook_with_args (); |
| 1454 | extern Lisp_Object Frun_hook_with_args_until_success (); | ||
| 1455 | extern Lisp_Object Frun_hook_with_args_until_failure (); | ||
| 1450 | extern Lisp_Object Fand (), For (), Fif (), Fprogn (), Fprog1 (), Fprog2 (); | 1456 | extern Lisp_Object Fand (), For (), Fif (), Fprogn (), Fprog1 (), Fprog2 (); |
| 1451 | extern Lisp_Object Fsetq (), Fquote (); | 1457 | extern Lisp_Object Fsetq (), Fquote (); |
| 1452 | extern Lisp_Object Fuser_variable_p (), Finteractive_p (); | 1458 | extern Lisp_Object Fuser_variable_p (), Finteractive_p (); |