# HG changeset patch # User Kim F. Storm # Date 1013080370 0 # Node ID 4ef02dc6ecd0400751c18636545893d01a14741a # Parent a7594a7b2ca2f74da0c70a686f4fcc1cfe0d08f4 (where_is_internal): Only check if definition is remapped if it fulfills is_command_symbol. diff -r a7594a7b2ca2 -r 4ef02dc6ecd0 src/keymap.c --- a/src/keymap.c Thu Feb 07 11:12:04 2002 +0000 +++ b/src/keymap.c Thu Feb 07 11:12:50 2002 +0000 @@ -2272,7 +2272,7 @@ /* If this command is remapped, then it has no key bindings of its own. */ - if (NILP (no_remap) + if (NILP (no_remap) && is_command_symbol (definition) && !NILP (Fkey_binding (definition, Qnil, Qt))) return Qnil;