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
7e05cdaf
Commit
7e05cdaf
authored
Oct 16, 2000
by
Stefan Monnier
Browse files
(keymap_memberp): Ensure that nil is not a member.
parent
45e680a8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
src/ChangeLog
src/ChangeLog
+4
-0
src/keymap.c
src/keymap.c
+1
-0
No files found.
src/ChangeLog
View file @
7e05cdaf
2000-10-16 Stefan Monnier <monnier@cs.yale.edu>
* keymap.c (keymap_memberp): Ensure that nil is not a member.
2000-10-16 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (set_iterator_to_next): Reset box start and end flags of
...
...
src/keymap.c
View file @
7e05cdaf
...
...
@@ -311,6 +311,7 @@ int
keymap_memberp
(
map
,
maps
)
Lisp_Object
map
,
maps
;
{
if
(
NILP
(
map
))
return
0
;
while
(
KEYMAPP
(
maps
)
&&
!
EQ
(
map
,
maps
))
maps
=
Fkeymap_parent
(
maps
);
return
(
EQ
(
map
,
maps
));
...
...
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