summaryrefslogtreecommitdiff
path: root/src/textprop.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-03-07 09:35:31 +0000
committerRichard M. Stallman <rms@gnu.org>1993-03-07 09:35:31 +0000
commit23ad46587f5c26468e4297b38a75a6d9d6e534d1 (patch)
tree0dd0ce6e70e50375a90acf172423a1ac9802ec9c /src/textprop.c
parent294efdbeb87b67c641e2eb6188aa120543c15953 (diff)
downloademacs-23ad46587f5c26468e4297b38a75a6d9d6e534d1.tar.gz
(Qmodification_hooks): Renamed from Qmodification.
(syms_of_textprop): Changed accordingly.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/textprop.c b/src/textprop.c
index 97951ca1846..f0e69f7496f 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -1,5 +1,5 @@
/* Interface code for dealing with text properties.
- Copyright (C) 1992 Free Software Foundation, Inc.
+ Copyright (C) 1993 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -43,7 +43,7 @@ Lisp_Object Qmouse_left;
Lisp_Object Qmouse_entered;
Lisp_Object Qpoint_left;
Lisp_Object Qpoint_entered;
-Lisp_Object Qmodification;
+Lisp_Object Qmodification_hooks;
/* Visual properties text (including strings) may have. */
Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple;
@@ -1023,8 +1023,8 @@ 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);
- Qmodification = intern ("modification");
+ staticpro (&Qmodification_hooks);
+ Qmodification_hooks = intern ("modification-hooks");
defsubr (&Stext_properties_at);
defsubr (&Sget_text_property);