diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-19 14:51:06 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-19 14:51:06 +0000 |
commit | cde71bb1a58e8fd9a953106059e9415ab166de86 (patch) | |
tree | 8acbae0b88f92dab7e03840987100cc0dd7ea803 /Src/Zle | |
parent | c071087d1f9850d2c6e9c690797d833c6cb6268f (diff) | |
download | zsh-cde71bb1a58e8fd9a953106059e9415ab166de86.tar.gz zsh-cde71bb1a58e8fd9a953106059e9415ab166de86.tar.xz zsh-cde71bb1a58e8fd9a953106059e9415ab166de86.zip |
make undo break out of menu selection if nothing to undo inside it (11992)
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/complist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c index f4542ee36..445c89bb7 100644 --- a/Src/Zle/complist.c +++ b/Src/Zle/complist.c @@ -1852,7 +1852,7 @@ domenuselect(Hookdef dummy, Chdata dat) int l; if (!u) - goto getk; + break; cs = 0; foredel(ll); |