mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-29 16:25:35 +01:00
18926: problem accepting filename require metafication with menu selection
This commit is contained in:
parent
f50425e16b
commit
2976578cc5
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-08-05 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 18926: Src/Zle/complist.c: fix (without knowing how) insertion
|
||||
of file names requiring metafication into the command line on
|
||||
a successful menu selection.
|
||||
|
||||
2003-08-06 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* unposted: Completion/Unix/Command/_texinfo: remove usage of 4.1
|
||||
|
|
|
@ -2283,7 +2283,9 @@ domenuselect(Hookdef dummy, Chdata dat)
|
|||
acc = 1;
|
||||
break;
|
||||
}
|
||||
metafy_line();
|
||||
do_single(**p);
|
||||
unmetafy_line();
|
||||
mselect = (**p)->gnum;
|
||||
}
|
||||
if (u)
|
||||
|
@ -2297,7 +2299,9 @@ domenuselect(Hookdef dummy, Chdata dat)
|
|||
inselect = mhasstat = 0;
|
||||
if (acc) {
|
||||
menucmp = lastambig = hasoldlist = 0;
|
||||
metafy_line();
|
||||
do_single(*(minfo.cur));
|
||||
unmetafy_line();
|
||||
}
|
||||
if (wasnext || broken) {
|
||||
menucmp = 2;
|
||||
|
|
Loading…
Reference in a new issue