aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-11-18 01:38:14 +0000
committerRichard M. Stallman1998-11-18 01:38:14 +0000
commit69bb837eb5724a9d70c4cfeae9d080b5c8f8abab (patch)
tree00bce733b593ddb8c382f79048e9dcc756b6c3e4 /src
parent65a04b969d81dd7835f9bfeec6566e321d5267d4 (diff)
downloademacs-69bb837eb5724a9d70c4cfeae9d080b5c8f8abab.tar.gz
emacs-69bb837eb5724a9d70c4cfeae9d080b5c8f8abab.zip
(Qmouse_face): Variable definition moved here.
(syms_of_textprop): Initialize it.
Diffstat (limited to 'src')
-rw-r--r--src/textprop.c4
1 files changed, 3 insertions, 1 deletions
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;
59 59
60/* Visual properties text (including strings) may have. */ 60/* Visual properties text (including strings) may have. */
61Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; 61Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple;
62Lisp_Object Qinvisible, Qread_only, Qintangible; 62Lisp_Object Qinvisible, Qread_only, Qintangible, Qmouse_face;
63 63
64/* Sticky properties */ 64/* Sticky properties */
65Lisp_Object Qfront_sticky, Qrear_nonsticky; 65Lisp_Object Qfront_sticky, Qrear_nonsticky;
@@ -1679,6 +1679,8 @@ This also inhibits the use of the `intangible' text property.");
1679 Qfront_sticky = intern ("front-sticky"); 1679 Qfront_sticky = intern ("front-sticky");
1680 staticpro (&Qrear_nonsticky); 1680 staticpro (&Qrear_nonsticky);
1681 Qrear_nonsticky = intern ("rear-nonsticky"); 1681 Qrear_nonsticky = intern ("rear-nonsticky");
1682 staticpro (&Qmouse_face);
1683 Qmouse_face = intern ("mouse-face");
1682 1684
1683 /* Properties that text might use to specify certain actions */ 1685 /* Properties that text might use to specify certain actions */
1684 1686