From: Richard M. Stallman Date: Wed, 18 Nov 1998 01:38:14 +0000 (+0000) Subject: (Qmouse_face): Variable definition moved here. X-Git-Tag: emacs-20.4~1220 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=69bb837eb5724a9d70c4cfeae9d080b5c8f8abab;p=emacs.git (Qmouse_face): Variable definition moved here. (syms_of_textprop): Initialize it. --- diff --git a/src/textprop.c b/src/textprop.c index ce2c7530d89..c7c7af563d5 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -59,7 +59,7 @@ Lisp_Object Qlocal_map; /* Visual properties text (including strings) may have. */ Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; -Lisp_Object Qinvisible, Qread_only, Qintangible; +Lisp_Object Qinvisible, Qread_only, Qintangible, Qmouse_face; /* Sticky properties */ Lisp_Object Qfront_sticky, Qrear_nonsticky; @@ -1679,6 +1679,8 @@ This also inhibits the use of the `intangible' text property."); Qfront_sticky = intern ("front-sticky"); staticpro (&Qrear_nonsticky); Qrear_nonsticky = intern ("rear-nonsticky"); + staticpro (&Qmouse_face); + Qmouse_face = intern ("mouse-face"); /* Properties that text might use to specify certain actions */