diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-13 21:07:02 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-13 21:07:02 +0000 |
commit | 4fe6d34cd7921ec13fa2e27807a181fdac8c92c8 (patch) | |
tree | 927e0676c249d54bb4784b92f892dc72e1f01d5f /src | |
parent | 74358c81a00e0f85b1448b570cbce1391d75c94c (diff) | |
download | emacs-4fe6d34cd7921ec13fa2e27807a181fdac8c92c8.tar.gz |
(Qinsert_in_front_hooks, Qinsert_behind_hooks): Declared.
This replaces part of previous change.
Diffstat (limited to 'src')
-rw-r--r-- | src/lisp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 4949056e138..c34dc54d7bc 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1289,8 +1289,8 @@ extern Lisp_Object Fundo_boundary (); extern Lisp_Object truncate_undo_list (); /* defined in textprop.c */ -extern Lisp_Object Qmodification_hooks, Qinsert_before_hooks; -extern Lisp_Object Qinsert_after_hooks; +extern Lisp_Object Qmodification_hooks; +extern Lisp_Object Qinsert_in_front_hooks, Qinsert_behind_hooks; /* Nonzero means Emacs has already been initialized. Used during startup to detect startup of dumped Emacs. */ |