# HG changeset patch # User Stefan Monnier # Date 983034437 0 # Node ID 274190d289d79c22be18c194907456010a935fa5 # Parent 5a7a1ff72e962b9cdf5f96ce7b5e596cc0e11b70 (where_is_internal): Accept non-ascii integer prefixes. diff -r 5a7a1ff72e96 -r 274190d289d7 src/keymap.c --- a/src/keymap.c Sat Feb 24 03:12:35 2001 +0000 +++ b/src/keymap.c Sat Feb 24 17:07:17 2001 +0000 @@ -2102,10 +2102,11 @@ last_is_meta = (XINT (last) >= 0 && EQ (Faref (this, last), meta_prefix_char)); - if (nomenus && !ascii_sequence_p (this)) + /* if (nomenus && !ascii_sequence_p (this)) */ + if (nomenus && XINT (last) >= 0 && !INTEGERP (Faref (this, 0))) /* If no menu entries should be returned, skip over the keymaps bound to `menu-bar' and `tool-bar' and other - non-ascii prefixes. */ + non-ascii prefixes like `C-down-mouse-2'. */ continue; QUIT;