aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 03e4688eaad..6287f6a4a44 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1143,7 +1143,7 @@ binding KEY to DEF is added at the front of KEYMAP. */)
1143 if (VECTORP (def) && ASIZE (def) > 0 && CONSP (AREF (def, 0))) 1143 if (VECTORP (def) && ASIZE (def) > 0 && CONSP (AREF (def, 0)))
1144 { /* DEF is apparently an XEmacs-style keyboard macro. */ 1144 { /* DEF is apparently an XEmacs-style keyboard macro. */
1145 Lisp_Object tmp = Fmake_vector (make_number (ASIZE (def)), Qnil); 1145 Lisp_Object tmp = Fmake_vector (make_number (ASIZE (def)), Qnil);
1146 int i = ASIZE (def); 1146 ptrdiff_t i = ASIZE (def);
1147 while (--i >= 0) 1147 while (--i >= 0)
1148 { 1148 {
1149 Lisp_Object defi = AREF (def, i); 1149 Lisp_Object defi = AREF (def, i);