summaryrefslogtreecommitdiff
path: root/src/textprop.c
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-05-29 11:37:57 +0000
committerDave Love <fx@gnu.org>2000-05-29 11:37:57 +0000
commit3133ee0160e132e96f72a9fb88e01f9d97b94ed1 (patch)
tree2e35763b66f00adfeba43bc68bf5abed654924bc /src/textprop.c
parentbd1d1d238e6e125622e6e923fb92c46ce69fdc8e (diff)
downloademacs-3133ee0160e132e96f72a9fb88e01f9d97b94ed1.tar.gz
(Qkeymap): New variable.
(syms_of_textprop): Intern it.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/textprop.c b/src/textprop.c
index fb750016d6c..141c3a5317d 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -54,6 +54,7 @@ Lisp_Object Qpoint_left;
Lisp_Object Qpoint_entered;
Lisp_Object Qcategory;
Lisp_Object Qlocal_map;
+Lisp_Object Qkeymap;
/* Visual properties text (including strings) may have. */
Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple;
@@ -699,7 +700,6 @@ next_single_char_property_change (pos, prop, object, limit)
else
{
Lisp_Object initial_value, value;
- struct buffer *old_current_buffer = NULL;
int count = specpdl_ptr - specpdl;
if (!NILP (object))
@@ -1870,6 +1870,8 @@ rear-nonsticky properties of the character overrides NONSTICKINESS.");
Qcategory = intern ("category");
staticpro (&Qlocal_map);
Qlocal_map = intern ("local-map");
+ staticpro (&Qkeymap);
+ Qkeymap = intern ("keymap");
staticpro (&Qfront_sticky);
Qfront_sticky = intern ("front-sticky");
staticpro (&Qrear_nonsticky);