1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-29 05:21:00 +01:00

41420: "{.." wasn't check for brace expansion properly

This commit is contained in:
Peter Stephenson 2017-07-13 17:20:24 +01:00
parent 050f752ed2
commit a3b3f00575
3 changed files with 11 additions and 0 deletions

View file

@ -2194,6 +2194,8 @@ bracechardots(char *str, convchar_t *c1p, convchar_t *c2p)
pnext[0] != '.' || pnext[1] != '.')
return 0;
pnext += 2;
if (!*pnext)
return 0;
if (itok(*pnext)) {
if (*pnext == Inbrace)
return 0;