diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2005-09-29 14:39:18 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2005-09-29 14:39:18 +0000 |
commit | 6183db6faa0815f09267062769c602a1de3d9e81 (patch) | |
tree | 81f23ff7805a417801b83dacb0eca61a3127798c /Src/Zle | |
parent | 5d6995abb1104771ac94720b9a73c51e88e4c51f (diff) | |
download | zsh-6183db6faa0815f09267062769c602a1de3d9e81.tar.gz zsh-6183db6faa0815f09267062769c602a1de3d9e81.tar.xz zsh-6183db6faa0815f09267062769c602a1de3d9e81.zip |
21770: tweak 21760 to avoid conflicts with global bindings
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/zle_keymap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Src/Zle/zle_keymap.c b/Src/Zle/zle_keymap.c index de1d918ba..3045eddd8 100644 --- a/Src/Zle/zle_keymap.c +++ b/Src/Zle/zle_keymap.c @@ -1300,10 +1300,9 @@ getkeymapcmd(Keymap km, Thingy *funcp, char **strp) loc = ((f = keybind(localkeymap, keybuf, &s)) != t_undefinedkey); ispfx = keyisprefix(localkeymap, keybuf); } - if (!loc && !ispfx) { + if (!loc) f = keybind(km, keybuf, &s); - ispfx = keyisprefix(km, keybuf); - } + ispfx |= keyisprefix(km, keybuf); if (f != t_undefinedkey) { lastlen = keybuflen; |