changeset 14288:dbb66b58d8f4

* isearch.el (isearch-other-meta-char): Avoid error if lookup in function-key-map gives another keymap.
author Karl Heuer <kwzh@gnu.org>
date Wed, 24 Jan 1996 23:26:25 +0000
parents 6cf50a9ff10f
children 5ef14e01a330
files lisp/isearch.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/isearch.el	Wed Jan 24 23:25:44 1996 +0000
+++ b/lisp/isearch.el	Wed Jan 24 23:26:25 1996 +0000
@@ -1004,7 +1004,8 @@
 	 (keylist (listify-key-sequence key)))
     (cond ((and (= (length key) 1)
 		(let ((lookup (lookup-key function-key-map key)))
-		  (not (or (null lookup) (integerp lookup)))))
+		  (not (or (null lookup) (integerp lookup)
+			   (keymapp lookup)))))
 	   ;; Handle a function key that translates into something else.
 	   ;; If the key has a global definition too,
 	   ;; exit and unread the key itself, so its global definition runs.