Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b332a422
Commit
b332a422
authored
May 29, 2000
by
Dave Love
Browse files
(Qkeymap): New variable.
(syms_of_textprop): Intern it.
parent
f1178103
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/textprop.c
src/textprop.c
+3
-1
No files found.
src/textprop.c
View file @
b332a422
...
@@ -54,6 +54,7 @@ Lisp_Object Qpoint_left;
...
@@ -54,6 +54,7 @@ Lisp_Object Qpoint_left;
Lisp_Object
Qpoint_entered
;
Lisp_Object
Qpoint_entered
;
Lisp_Object
Qcategory
;
Lisp_Object
Qcategory
;
Lisp_Object
Qlocal_map
;
Lisp_Object
Qlocal_map
;
Lisp_Object
Qkeymap
;
/* Visual properties text (including strings) may have. */
/* Visual properties text (including strings) may have. */
Lisp_Object
Qforeground
,
Qbackground
,
Qfont
,
Qunderline
,
Qstipple
;
Lisp_Object
Qforeground
,
Qbackground
,
Qfont
,
Qunderline
,
Qstipple
;
...
@@ -699,7 +700,6 @@ next_single_char_property_change (pos, prop, object, limit)
...
@@ -699,7 +700,6 @@ next_single_char_property_change (pos, prop, object, limit)
else
else
{
{
Lisp_Object
initial_value
,
value
;
Lisp_Object
initial_value
,
value
;
struct
buffer
*
old_current_buffer
=
NULL
;
int
count
=
specpdl_ptr
-
specpdl
;
int
count
=
specpdl_ptr
-
specpdl
;
if
(
!
NILP
(
object
))
if
(
!
NILP
(
object
))
...
@@ -1870,6 +1870,8 @@ rear-nonsticky properties of the character overrides NONSTICKINESS.");
...
@@ -1870,6 +1870,8 @@ rear-nonsticky properties of the character overrides NONSTICKINESS.");
Qcategory
=
intern
(
"category"
);
Qcategory
=
intern
(
"category"
);
staticpro
(
&
Qlocal_map
);
staticpro
(
&
Qlocal_map
);
Qlocal_map
=
intern
(
"local-map"
);
Qlocal_map
=
intern
(
"local-map"
);
staticpro
(
&
Qkeymap
);
Qkeymap
=
intern
(
"keymap"
);
staticpro
(
&
Qfront_sticky
);
staticpro
(
&
Qfront_sticky
);
Qfront_sticky
=
intern
(
"front-sticky"
);
Qfront_sticky
=
intern
(
"front-sticky"
);
staticpro
(
&
Qrear_nonsticky
);
staticpro
(
&
Qrear_nonsticky
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment