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 6d0f9e5c058..24f3daa6549 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -464,7 +464,7 @@ is not copied.")
464 464
465 for (i = 0; i < XVECTOR (elt)->size; i++) 465 for (i = 0; i < XVECTOR (elt)->size; i++)
466 if (XTYPE (XVECTOR (elt)->contents[i]) != Lisp_Symbol 466 if (XTYPE (XVECTOR (elt)->contents[i]) != Lisp_Symbol
467 && Fkeymapp (XVECTOR (elt)->contents[i])) 467 && ! NILP (Fkeymapp (XVECTOR (elt)->contents[i])))
468 XVECTOR (elt)->contents[i] = 468 XVECTOR (elt)->contents[i] =
469 Fcopy_keymap (XVECTOR (elt)->contents[i]); 469 Fcopy_keymap (XVECTOR (elt)->contents[i]);
470 } 470 }