diff options
author | Dave Love <fx@gnu.org> | 2000-05-29 11:37:57 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-05-29 11:37:57 +0000 |
commit | b332a42260f88164071ee6a99b5276e2df5fd339 (patch) | |
tree | b4141c1fde5cbaa14e341ec990f6dd3426c1f6cf /src/textprop.c | |
parent | f1178103e7752e5d4496bc7d89fa0d6248c7f1c0 (diff) | |
download | emacs-b332a42260f88164071ee6a99b5276e2df5fd339.tar.gz |
(Qkeymap): New variable.
(syms_of_textprop): Intern it.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 4 |
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); |