From: Richard M. Stallman Date: Fri, 30 May 1997 19:21:06 +0000 (+0000) Subject: (substitute-key-definition): Check vectorp, not arrayp. X-Git-Tag: emacs-20.1~1902 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=916cc49f93a71ecc84f90e58fbe07ed96d55e566;p=emacs.git (substitute-key-definition): Check vectorp, not arrayp. --- diff --git a/lisp/subr.el b/lisp/subr.el index 0b87112c9cd..ecc64fcb450 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -145,7 +145,7 @@ in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP." (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))