diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-07-21 22:33:37 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-07-21 22:33:37 +0000 |
commit | 1110dff34196a2a6fbd85a8339722dc78a7d5a7c (patch) | |
tree | 8faec9093780f33a9db414bae3572962893826a8 /src/textprop.c | |
parent | 294d215f89bb2227633407484e99eeb1b76d5b3c (diff) | |
download | emacs-1110dff34196a2a6fbd85a8339722dc78a7d5a7c.tar.gz |
(Qmodification_hooks, Qinsert_in_front_hooks)
(Qinsert_behind_hooks): Moved to buffer.c.
(syms_of_textprop): Lisp vars setup deleted.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/textprop.c b/src/textprop.c index 72e0c1a2d25..dd04b2f209a 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -43,9 +43,6 @@ Lisp_Object Qmouse_left; Lisp_Object Qmouse_entered; Lisp_Object Qpoint_left; Lisp_Object Qpoint_entered; -Lisp_Object Qmodification_hooks; -Lisp_Object Qinsert_in_front_hooks; -Lisp_Object Qinsert_behind_hooks; Lisp_Object Qcategory; Lisp_Object Qlocal_map; @@ -1212,12 +1209,6 @@ percentage by which the left interval tree should not differ from the right."); Qpoint_left = intern ("point-left"); staticpro (&Qpoint_entered); Qpoint_entered = intern ("point-entered"); - 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"); defsubr (&Stext_properties_at); defsubr (&Sget_text_property); |