aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-05-29 11:37:57 +0000
committerDave Love2000-05-29 11:37:57 +0000
commitb332a42260f88164071ee6a99b5276e2df5fd339 (patch)
treeb4141c1fde5cbaa14e341ec990f6dd3426c1f6cf /src
parentf1178103e7752e5d4496bc7d89fa0d6248c7f1c0 (diff)
downloademacs-b332a42260f88164071ee6a99b5276e2df5fd339.tar.gz
emacs-b332a42260f88164071ee6a99b5276e2df5fd339.zip
(Qkeymap): New variable.
(syms_of_textprop): Intern 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 fb750016d6c..141c3a5317d 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -54,6 +54,7 @@ Lisp_Object Qpoint_left;
54Lisp_Object Qpoint_entered; 54Lisp_Object Qpoint_entered;
55Lisp_Object Qcategory; 55Lisp_Object Qcategory;
56Lisp_Object Qlocal_map; 56Lisp_Object Qlocal_map;
57Lisp_Object Qkeymap;
57 58
58/* Visual properties text (including strings) may have. */ 59/* Visual properties text (including strings) may have. */
59Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple; 60Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple;
@@ -699,7 +700,6 @@ next_single_char_property_change (pos, prop, object, limit)
699 else 700 else
700 { 701 {
701 Lisp_Object initial_value, value; 702 Lisp_Object initial_value, value;
702 struct buffer *old_current_buffer = NULL;
703 int count = specpdl_ptr - specpdl; 703 int count = specpdl_ptr - specpdl;
704 704
705 if (!NILP (object)) 705 if (!NILP (object))
@@ -1870,6 +1870,8 @@ rear-nonsticky properties of the character overrides NONSTICKINESS.");
1870 Qcategory = intern ("category"); 1870 Qcategory = intern ("category");
1871 staticpro (&Qlocal_map); 1871 staticpro (&Qlocal_map);
1872 Qlocal_map = intern ("local-map"); 1872 Qlocal_map = intern ("local-map");
1873 staticpro (&Qkeymap);
1874 Qkeymap = intern ("keymap");
1873 staticpro (&Qfront_sticky); 1875 staticpro (&Qfront_sticky);
1874 Qfront_sticky = intern ("front-sticky"); 1876 Qfront_sticky = intern ("front-sticky");
1875 staticpro (&Qrear_nonsticky); 1877 staticpro (&Qrear_nonsticky);