# HG changeset patch # User Richard M. Stallman # Date 731496931 0 # Node ID 8bdcc55ebd8f8bd1787e325205f74f78e3675dc8 # Parent 48c83a34c005248db93bd422d509d867fe5d98f2 (Qmodification_hooks): Renamed from Qmodification. (syms_of_textprop): Changed accordingly. diff -r 48c83a34c005 -r 8bdcc55ebd8f src/textprop.c --- a/src/textprop.c Sun Mar 07 09:34:39 1993 +0000 +++ b/src/textprop.c Sun Mar 07 09:35:31 1993 +0000 @@ -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_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 @@ 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);