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

fix for ignore-line style (11679)

This commit is contained in:
Sven Wischnowsky 2000-05-31 06:13:50 +00:00
parent 3beeb8a6fd
commit fb6bcb7364
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2000-05-31 Sven Wischnowsky <wischnow@zsh.org>
* 11679: Src/Zle/compcore.c: fix for ignore-line style
* 11678: Completion/Base/_arguments: avoid reporting the same
->state more than once

View file

@ -1895,6 +1895,10 @@ addmatches(Cadata dat, char **argv)
argv = &ms;
}
}
if (dat->ppre)
ppl = strlen(dat->ppre);
if (dat->psuf)
psl = strlen(dat->psuf);
for (; (s = *argv); argv++) {
bpl = obpl;
bsl = obsl;