1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2026-01-06 09:41:07 +01:00

28425: remove null arguments and untokenize

This commit is contained in:
Peter Stephenson 2010-11-20 23:46:26 +00:00
parent 8f20b2361c
commit e6946adf57
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2010-11-20 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28425: Src/subst.c: remove null arguments and untokenize.
2010-11-18 Peter Stephenson <pws@csr.com>
* 28419: Doc/Zsh/expn.yo, Src/subst.c, Test/D04parameter.ztst:
@ -13828,5 +13832,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5123 $
* $Revision: 1.5124 $
*****************************************************

View file

@ -1403,6 +1403,8 @@ check_colon_subscript(char *str, char **endp)
if (parsestr(str = dupstring(str)))
return NULL;
singsub(&str);
remnulargs(str);
untokenize(str);
**endp = sav;
return str;