diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
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) |