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
5dd6606e
Commit
5dd6606e
authored
Aug 24, 1994
by
Richard M. Stallman
Browse files
(textget): Ignore category prop if not a symbol.
parent
0d55a560
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/intervals.c
src/intervals.c
+5
-1
No files found.
src/intervals.c
View file @
5dd6606e
...
...
@@ -1558,7 +1558,11 @@ textget (plist, prop)
if
(
EQ
(
prop
,
tem
))
return
Fcar
(
Fcdr
(
tail
));
if
(
EQ
(
tem
,
Qcategory
))
fallback
=
Fget
(
Fcar
(
Fcdr
(
tail
)),
prop
);
{
tem
=
Fcar
(
Fcdr
(
tail
));
if
(
SYMBOLP
(
tem
))
fallback
=
Fget
(
tem
,
prop
);
}
}
return
fallback
;
...
...
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