aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 168232203fe..ed8e71fd0a7 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -10020,7 +10020,7 @@ Internal use only. */)
10020 add_command_key (make_number ('x' | meta_modifier)); 10020 add_command_key (make_number ('x' | meta_modifier));
10021 else 10021 else
10022 add_command_key (make_number (key0)); 10022 add_command_key (make_number (key0));
10023 for (int i = 1; i < SCHARS (keys); i++) 10023 for (ptrdiff_t i = 1; i < SCHARS (keys); i++)
10024 add_command_key (make_number (SREF (keys, i))); 10024 add_command_key (make_number (SREF (keys, i)));
10025 return Qnil; 10025 return Qnil;
10026} 10026}