aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-10 21:48:30 +0000
committerRichard M. Stallman1997-05-10 21:48:30 +0000
commit89599794182e97ba3777195e7c522aa929ec14a5 (patch)
treeaef399caca7209ec44dae93c8e27f3a1a5091a24 /src
parente5d4686b2023aca4e8164151ace591a2451919b6 (diff)
downloademacs-89599794182e97ba3777195e7c522aa929ec14a5.tar.gz
emacs-89599794182e97ba3777195e7c522aa929ec14a5.zip
(command_loop_1): Use an int for last_command_char.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
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 ()
1323 /* Try this optimization only on ascii keystrokes. */ 1323 /* Try this optimization only on ascii keystrokes. */
1324 && INTEGERP (last_command_char)) 1324 && INTEGERP (last_command_char))
1325 { 1325 {
1326 unsigned char c = XINT (last_command_char); 1326 unsigned int c = XINT (last_command_char);
1327 int value; 1327 int value;
1328 1328
1329 if (NILP (Vexecuting_macro) 1329 if (NILP (Vexecuting_macro)