1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 00:41:44 +02:00

21642: remove redundant checks

This commit is contained in:
Andrey Borzenkov 2005-08-16 17:25:48 +00:00
parent fb047b6ffa
commit 11b0963bdc
2 changed files with 9 additions and 16 deletions

@ -1,3 +1,8 @@
2005-08-16 Andrey Borzenkov <bor@zsh.org>
* 21642: Src/Zle/compcore.c: cleanup for 21627, remove redundant
checks
2005-08-16 Clint Adams <clint@zsh.org>
* 21631: Src/Zle/compcore.c: make sure an unmetafied string is

@ -355,15 +355,9 @@ do_completion(UNUSED(Hookdef dummy), Compldat dat)
minfo.cur = NULL;
if (useline < 0) {
/* unmetafy line before calling ZLE */
int remetafy = 0;
if (zlemetaline != NULL) {
unmetafy_line();
remetafy = 1;
}
unmetafy_line();
ret = selfinsert(zlenoargs);
if (remetafy)
metafy_line();
metafy_line();
}
goto compend;
}
@ -379,15 +373,9 @@ do_completion(UNUSED(Hookdef dummy), Compldat dat)
ret = !nmatches;
} else if (useline < 0) {
/* unmetafy line before calling ZLE */
int remetafy = 0;
if (zlemetaline != NULL) {
unmetafy_line();
remetafy = 1;
}
unmetafy_line();
ret = selfinsert(zlenoargs);
if (remetafy)
metafy_line();
metafy_line();
} else if (!useline && uselist) {
/* All this and the guy only wants to see the list, sigh. */
zlemetacs = 0;