mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
(Qmodification_hooks, Qinsert_in_front_hooks)
(Qinsert_behind_hooks): Moved here. (syms_of_buffer): Lisp vars set up here.
This commit is contained in:
parent
5f60ed47d9
commit
294d215f89
1 changed files with 10 additions and 0 deletions
10
src/buffer.c
10
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");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue