From: Richard M. Stallman Date: Sat, 10 May 1997 21:48:30 +0000 (+0000) Subject: (command_loop_1): Use an int for last_command_char. X-Git-Tag: emacs-20.1~2207 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=89599794182e97ba3777195e7c522aa929ec14a5;p=emacs.git (command_loop_1): Use an int for last_command_char. --- diff --git a/src/keyboard.c b/src/keyboard.c index 1e19b816135..f299bd01e2d 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1323,7 +1323,7 @@ command_loop_1 () /* Try this optimization only on ascii keystrokes. */ && INTEGERP (last_command_char)) { - unsigned char c = XINT (last_command_char); + unsigned int c = XINT (last_command_char); int value; if (NILP (Vexecuting_macro)