From b332a42260f88164071ee6a99b5276e2df5fd339 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Mon, 29 May 2000 11:37:57 +0000 Subject: [PATCH] (Qkeymap): New variable. (syms_of_textprop): Intern it. --- src/textprop.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- 2.39.5