mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 21:51:40 +02:00
*** empty log message ***
This commit is contained in:
parent
ae4ba457c4
commit
bd4490b966
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
2000-10-10 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 12942: Completion/Core/_expand: temporarily remove global
|
||||
* 12942,12945: Completion/Core/_expand: temporarily remove global
|
||||
aliases to avoid error message inside the evals
|
||||
|
||||
* 12941: Src/Zle/compmatch.c: follow-up to 12930, make it first
|
||||
|
|
|
@ -843,6 +843,9 @@ match_str(char *l, char *w, Brinfo *bpp, int bc, int *rwlp,
|
|||
he = 0;
|
||||
} else {
|
||||
|
||||
if (!lw)
|
||||
break;
|
||||
|
||||
if (exact) {
|
||||
/* If we just accepted some characters directly (at the
|
||||
* beginning of the loop) and now can't match any further,
|
||||
|
@ -858,9 +861,6 @@ match_str(char *l, char *w, Brinfo *bpp, int bc, int *rwlp,
|
|||
|
||||
goto retry;
|
||||
}
|
||||
|
||||
if (!lw)
|
||||
break;
|
||||
/* No matcher and different characters: l does not match w. */
|
||||
if (test)
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue