Mercurial > emacs
comparison src/buffer.c @ 4213:616036bb2427
(Qmodification_hooks, Qinsert_in_front_hooks)
(Qinsert_behind_hooks): Moved here.
(syms_of_buffer): Lisp vars set up here.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 21 Jul 1993 22:33:00 +0000 |
parents | f8c6e5e9603f |
children | 7c7e33d6386d |
comparison
equal
deleted
inserted
replaced
4212:a696547fb51e | 4213:616036bb2427 |
---|---|
129 Lisp_Object QSFundamental; /* A string "Fundamental" */ | 129 Lisp_Object QSFundamental; /* A string "Fundamental" */ |
130 | 130 |
131 Lisp_Object Qkill_buffer_hook; | 131 Lisp_Object Qkill_buffer_hook; |
132 | 132 |
133 Lisp_Object Qoverlayp; | 133 Lisp_Object Qoverlayp; |
134 | |
135 Lisp_Object Qmodification_hooks; | |
136 Lisp_Object Qinsert_in_front_hooks; | |
137 Lisp_Object Qinsert_behind_hooks; | |
134 | 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 |
138 nsberror (spec) | 142 nsberror (spec) |
2152 staticpro (&Vbuffer_alist); | 2156 staticpro (&Vbuffer_alist); |
2153 staticpro (&Qprotected_field); | 2157 staticpro (&Qprotected_field); |
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 |
2160 Fput (Qprotected_field, Qerror_conditions, | 2170 Fput (Qprotected_field, Qerror_conditions, |
2161 Fcons (Qprotected_field, Fcons (Qerror, Qnil))); | 2171 Fcons (Qprotected_field, Fcons (Qerror, Qnil))); |