1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 10:01:11 +02:00

*** empty log message ***

This commit is contained in:
Sven Wischnowsky 2000-10-10 13:37:30 +00:00
parent ae4ba457c4
commit bd4490b966
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
2000-10-10 Sven Wischnowsky <wischnow@zsh.org> 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 aliases to avoid error message inside the evals
* 12941: Src/Zle/compmatch.c: follow-up to 12930, make it first * 12941: Src/Zle/compmatch.c: follow-up to 12930, make it first

View file

@ -843,6 +843,9 @@ match_str(char *l, char *w, Brinfo *bpp, int bc, int *rwlp,
he = 0; he = 0;
} else { } else {
if (!lw)
break;
if (exact) { if (exact) {
/* If we just accepted some characters directly (at the /* If we just accepted some characters directly (at the
* beginning of the loop) and now can't match any further, * 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; goto retry;
} }
if (!lw)
break;
/* No matcher and different characters: l does not match w. */ /* No matcher and different characters: l does not match w. */
if (test) if (test)
return 0; return 0;