From: Dave Love Date: Mon, 29 May 2000 11:37:57 +0000 (+0000) Subject: (Qkeymap): New variable. X-Git-Tag: emacs-pretest-21.0.90~3647 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b332a42260f88164071ee6a99b5276e2df5fd339;p=emacs.git (Qkeymap): New variable. (syms_of_textprop): Intern it. --- 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);