aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-21 22:33:37 +0000
committerRichard M. Stallman1993-07-21 22:33:37 +0000
commit1110dff34196a2a6fbd85a8339722dc78a7d5a7c (patch)
tree8faec9093780f33a9db414bae3572962893826a8 /src
parent294d215f89bb2227633407484e99eeb1b76d5b3c (diff)
downloademacs-1110dff34196a2a6fbd85a8339722dc78a7d5a7c.tar.gz
emacs-1110dff34196a2a6fbd85a8339722dc78a7d5a7c.zip
(Qmodification_hooks, Qinsert_in_front_hooks)
(Qinsert_behind_hooks): Moved to buffer.c. (syms_of_textprop): Lisp vars setup deleted.
Diffstat (limited to 'src')
-rw-r--r--src/textprop.c9
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;
43Lisp_Object Qmouse_entered; 43Lisp_Object Qmouse_entered;
44Lisp_Object Qpoint_left; 44Lisp_Object Qpoint_left;
45Lisp_Object Qpoint_entered; 45Lisp_Object Qpoint_entered;
46Lisp_Object Qmodification_hooks;
47Lisp_Object Qinsert_in_front_hooks;
48Lisp_Object Qinsert_behind_hooks;
49Lisp_Object Qcategory; 46Lisp_Object Qcategory;
50Lisp_Object Qlocal_map; 47Lisp_Object Qlocal_map;
51 48
@@ -1212,12 +1209,6 @@ percentage by which the left interval tree should not differ from the right.");
1212 Qpoint_left = intern ("point-left"); 1209 Qpoint_left = intern ("point-left");
1213 staticpro (&Qpoint_entered); 1210 staticpro (&Qpoint_entered);
1214 Qpoint_entered = intern ("point-entered"); 1211 Qpoint_entered = intern ("point-entered");
1215 staticpro (&Qmodification_hooks);
1216 Qmodification_hooks = intern ("modification-hooks");
1217 staticpro (&Qinsert_in_front_hooks);
1218 Qinsert_in_front_hooks = intern ("insert-in-front-hooks");
1219 staticpro (&Qinsert_behind_hooks);
1220 Qinsert_behind_hooks = intern ("insert-behind-hooks");
1221 1212
1222 defsubr (&Stext_properties_at); 1213 defsubr (&Stext_properties_at);
1223 defsubr (&Sget_text_property); 1214 defsubr (&Sget_text_property);