diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-21 22:33:00 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-21 22:33:00 +0000 |
commit | 294d215f89bb2227633407484e99eeb1b76d5b3c (patch) | |
tree | 9bd91d25cd54b8f5208ff49925ac155413ed3257 | |
parent | 5f60ed47d9d0481a30981e248a738dfe1b143e3c (diff) | |
download | emacs-294d215f89bb2227633407484e99eeb1b76d5b3c.tar.gz |
(Qmodification_hooks, Qinsert_in_front_hooks)
(Qinsert_behind_hooks): Moved here.
(syms_of_buffer): Lisp vars set up here.
-rw-r--r-- | src/buffer.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index b12ce2ac141..f85772c34e3 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -132,6 +132,10 @@ Lisp_Object Qkill_buffer_hook; Lisp_Object Qoverlayp; +Lisp_Object Qmodification_hooks; +Lisp_Object Qinsert_in_front_hooks; +Lisp_Object Qinsert_behind_hooks; + /* For debugging; temporary. See set_buffer_internal. */ /* Lisp_Object Qlisp_mode, Vcheck_symbol; */ @@ -2154,6 +2158,12 @@ syms_of_buffer () staticpro (&Qpermanent_local); staticpro (&Qkill_buffer_hook); staticpro (&Qoverlayp); + staticpro (&Qmodification_hooks); + Qmodification_hooks = intern ("modification-hooks"); + staticpro (&Qinsert_in_front_hooks); + Qinsert_in_front_hooks = intern ("insert-in-front-hooks"); + staticpro (&Qinsert_behind_hooks); + Qinsert_behind_hooks = intern ("insert-behind-hooks"); Qoverlayp = intern ("overlayp"); |