Mercurial > emacs
changeset 17738:f20c2a909ad3
(command_loop_1): Use an int for last_command_char.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 10 May 1997 21:48:30 +0000 |
parents | f79f2d6b119b |
children | 1b0a4e406ba2 |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Sat May 10 21:47:21 1997 +0000 +++ b/src/keyboard.c Sat May 10 21:48:30 1997 +0000 @@ -1323,7 +1323,7 @@ /* 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)