Mercurial > emacs
changeset 2053:8bdcc55ebd8f
(Qmodification_hooks): Renamed from Qmodification.
(syms_of_textprop): Changed accordingly.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 07 Mar 1993 09:35:31 +0000 |
parents | 48c83a34c005 |
children | 341337259785 |
files | src/textprop.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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);