(substitute-key-definition): Do recursively scan
where KEYMAP has nothing at all.
This commit is contained in:
parent
08a1c17815
commit
afd9831b8d
1 changed files with 6 additions and 2 deletions
|
@ -129,7 +129,9 @@ in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP."
|
|||
(if (and (keymapp defn)
|
||||
;; Avoid recursively scanning
|
||||
;; where KEYMAP does not have a submap.
|
||||
(keymapp (lookup-key keymap prefix1))
|
||||
(let ((elt (lookup-key keymap prefix1)))
|
||||
(or (null elt)
|
||||
(keymapp elt)))
|
||||
;; Avoid recursively rescanning keymap being scanned.
|
||||
(not (memq inner-def
|
||||
key-substitution-in-progress)))
|
||||
|
@ -163,7 +165,9 @@ in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP."
|
|||
(define-key keymap prefix1
|
||||
(nconc (nreverse skipped) newdef))
|
||||
(if (and (keymapp defn)
|
||||
(keymapp (lookup-key keymap prefix1))
|
||||
(let ((elt (lookup-key keymap prefix1)))
|
||||
(or (null elt)
|
||||
(keymapp elt)))
|
||||
(not (memq inner-def
|
||||
key-substitution-in-progress)))
|
||||
(substitute-key-definition olddef newdef keymap
|
||||
|
|
Loading…
Add table
Reference in a new issue