aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorKarl Heuer1994-09-19 17:46:42 +0000
committerKarl Heuer1994-09-19 17:46:42 +0000
commite283121bc3ea0754887214417db4ad8901f9e15d (patch)
tree7f481ef36b2cca94d67afa3b4eff2ca15cb183bd /src/keymap.c
parentddf09aa603a1e3ad9b5ec88ae157f04af1278204 (diff)
downloademacs-e283121bc3ea0754887214417db4ad8901f9e15d.tar.gz
emacs-e283121bc3ea0754887214417db4ad8901f9e15d.zip
(Fkey_description): Reverse condition.
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 df12f254af9..76f59c2fa55 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1366,7 +1366,7 @@ spaces are put between sequence elements, etc.")
1366 } 1366 }
1367 keys = vector; 1367 keys = vector;
1368 } 1368 }
1369 else if (VECTORP (keys)) 1369 else if (!VECTORP (keys))
1370 keys = wrong_type_argument (Qarrayp, keys); 1370 keys = wrong_type_argument (Qarrayp, keys);
1371 1371
1372 /* In effect, this computes 1372 /* In effect, this computes