diff options
| author | Richard M. Stallman | 1993-07-21 22:33:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-21 22:33:00 +0000 |
| commit | 294d215f89bb2227633407484e99eeb1b76d5b3c (patch) | |
| tree | 9bd91d25cd54b8f5208ff49925ac155413ed3257 /src/buffer.c | |
| parent | 5f60ed47d9d0481a30981e248a738dfe1b143e3c (diff) | |
| download | emacs-294d215f89bb2227633407484e99eeb1b76d5b3c.tar.gz emacs-294d215f89bb2227633407484e99eeb1b76d5b3c.zip | |
(Qmodification_hooks, Qinsert_in_front_hooks)
(Qinsert_behind_hooks): Moved here.
(syms_of_buffer): Lisp vars set up here.
Diffstat (limited to 'src/buffer.c')
| -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; | |||
| 132 | 132 | ||
| 133 | Lisp_Object Qoverlayp; | 133 | Lisp_Object Qoverlayp; |
| 134 | 134 | ||
| 135 | Lisp_Object Qmodification_hooks; | ||
| 136 | Lisp_Object Qinsert_in_front_hooks; | ||
| 137 | Lisp_Object Qinsert_behind_hooks; | ||
| 138 | |||
| 135 | /* For debugging; temporary. See set_buffer_internal. */ | 139 | /* For debugging; temporary. See set_buffer_internal. */ |
| 136 | /* Lisp_Object Qlisp_mode, Vcheck_symbol; */ | 140 | /* Lisp_Object Qlisp_mode, Vcheck_symbol; */ |
| 137 | 141 | ||
| @@ -2154,6 +2158,12 @@ syms_of_buffer () | |||
| 2154 | staticpro (&Qpermanent_local); | 2158 | staticpro (&Qpermanent_local); |
| 2155 | staticpro (&Qkill_buffer_hook); | 2159 | staticpro (&Qkill_buffer_hook); |
| 2156 | staticpro (&Qoverlayp); | 2160 | staticpro (&Qoverlayp); |
| 2161 | staticpro (&Qmodification_hooks); | ||
| 2162 | Qmodification_hooks = intern ("modification-hooks"); | ||
| 2163 | staticpro (&Qinsert_in_front_hooks); | ||
| 2164 | Qinsert_in_front_hooks = intern ("insert-in-front-hooks"); | ||
| 2165 | staticpro (&Qinsert_behind_hooks); | ||
| 2166 | Qinsert_behind_hooks = intern ("insert-behind-hooks"); | ||
| 2157 | 2167 | ||
| 2158 | Qoverlayp = intern ("overlayp"); | 2168 | Qoverlayp = intern ("overlayp"); |
| 2159 | 2169 | ||