(keymap_memberp): Ensure that nil is not a member.
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user