comparison src/keyboard.c @ 29729:bf15c290522e

missed one in last checkin
author Ken Raeburn <raeburn@raeburn.org>
date Mon, 19 Jun 2000 07:42:41 +0000
parents c9430bc1c824
children 6863a9ae42d6
comparison
equal deleted inserted replaced
29728:f0f1e1365670 29729:bf15c290522e
7335 7335
7336 /* If KEY is a meta ASCII character, treat it like meta-prefix-char 7336 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
7337 followed by the corresponding non-meta character. 7337 followed by the corresponding non-meta character.
7338 Put the results into DEFS, since we are going to alter that anyway. 7338 Put the results into DEFS, since we are going to alter that anyway.
7339 Do not alter CURRENT or NEXT. */ 7339 Do not alter CURRENT or NEXT. */
7340 if (INTEGERP (key) && (XINT (key) & CHAR_META)) 7340 if (INTEGERP (key) && (XUINT (key) & CHAR_META))
7341 { 7341 {
7342 for (i = 0; i < nmaps; i++) 7342 for (i = 0; i < nmaps; i++)
7343 if (! NILP (current[i])) 7343 if (! NILP (current[i]))
7344 { 7344 {
7345 Lisp_Object def; 7345 Lisp_Object def;