]> code.delx.au - gnu-emacs/commitdiff
(Qmouse_face): Variable definition moved here.
authorRichard M. Stallman <rms@gnu.org>
Wed, 18 Nov 1998 01:38:14 +0000 (01:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 18 Nov 1998 01:38:14 +0000 (01:38 +0000)
(syms_of_textprop): Initialize it.

src/textprop.c

index ce2c7530d8975286014c3e3571516158522f6fb2..c7c7af563d51a7c078586bafdead255444a1f33a 100644 (file)
@@ -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 */