changeset 18044:3e4924d01221

(substitute-key-definition): Check vectorp, not arrayp.
author Richard M. Stallman <rms@gnu.org>
date Fri, 30 May 1997 19:21:06 +0000
parents c2d71b9b8f75
children a2029aaffb4f
files lisp/subr.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Fri May 30 16:07:16 1997 +0000
+++ b/lisp/subr.el	Fri May 30 19:21:06 1997 +0000
@@ -145,7 +145,7 @@
 		    (substitute-key-definition olddef newdef keymap
 					       inner-def
 					       prefix1)))))
-	(if (arrayp (car scan))
+	(if (vectorp (car scan))
 	    (let* ((array (car scan))
 		   (len (length array))
 		   (i 0))