aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 9b36ec08b6d..1476859ccd5 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1156,7 +1156,7 @@ binding KEY to DEF is added at the front of KEYMAP. */)
1156 1156
1157 meta_bit = VECTORP (key) ? meta_modifier : 0x80; 1157 meta_bit = VECTORP (key) ? meta_modifier : 0x80;
1158 1158
1159 if (VECTORP (def) && ASIZE (def) > 0 && CONSP (AREF (def, make_number (0)))) 1159 if (VECTORP (def) && ASIZE (def) > 0 && CONSP (AREF (def, 0)))
1160 { /* DEF is apparently an XEmacs-style keyboard macro. */ 1160 { /* DEF is apparently an XEmacs-style keyboard macro. */
1161 Lisp_Object tmp = Fmake_vector (make_number (ASIZE (def)), Qnil); 1161 Lisp_Object tmp = Fmake_vector (make_number (ASIZE (def)), Qnil);
1162 int i = ASIZE (def); 1162 int i = ASIZE (def);