From 69bb837eb5724a9d70c4cfeae9d080b5c8f8abab Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 18 Nov 1998 01:38:14 +0000 Subject: [PATCH] (Qmouse_face): Variable definition moved here. (syms_of_textprop): Initialize it. --- src/textprop.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 */ -- 2.39.2