diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2005-10-13 16:30:13 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2005-10-13 16:30:13 +0000 |
commit | 3c37057c34d975ada2e9e6590845732677e77104 (patch) | |
tree | 35d876225f35ea3d3c90c68df50e41fba8dbbe44 /Src/subst.c | |
parent | cc81bba1e34b4a7a357b6a7e6ec1d4eede4ffa61 (diff) | |
download | zsh-3c37057c34d975ada2e9e6590845732677e77104.tar.gz zsh-3c37057c34d975ada2e9e6590845732677e77104.tar.xz zsh-3c37057c34d975ada2e9e6590845732677e77104.zip |
21871: replace INULL() by inull()
Diffstat (limited to 'Src/subst.c')
-rw-r--r-- | Src/subst.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Src/subst.c b/Src/subst.c index 67de61418..a10e2ee22 100644 --- a/Src/subst.c +++ b/Src/subst.c @@ -1406,7 +1406,7 @@ paramsubst(LinkList l, LinkNode n, char **str, int qt, int ssub) zerr("bad substitution", NULL, 0); return NULL; } - } else if (inbrace && INULL(*s)) { + } else if (inbrace && inull(*s)) { /* * Handles things like ${(f)"$(<file)"} by skipping * the double quotes. We don't need to know what was @@ -1460,7 +1460,7 @@ paramsubst(LinkList l, LinkNode n, char **str, int qt, int ssub) * This tests for the second double quote in an expression * like ${(f)"$(<file)"}, compare above. */ - while (INULL(*s)) + while (inull(*s)) s++; v = (Value) NULL; } else if (aspar) { @@ -1850,7 +1850,7 @@ paramsubst(LinkList l, LinkNode n, char **str, int qt, int ssub) * we didn't have a subexpression, e.g. ${"foo"}. * This form is pointless, but logically it ought to work. */ - while (INULL(*s)) + while (inull(*s)) s++; } /* @@ -2846,11 +2846,11 @@ modify(char **str, char **ptr) } zsfree(hsubr); for (tt = hsubl; *tt; tt++) - if (INULL(*tt) && *tt != Bnullkeep) + if (inull(*tt) && *tt != Bnullkeep) chuck(tt--); untokenize(hsubl); for (tt = hsubr = ztrdup(ptr2); *tt; tt++) - if (INULL(*tt) && *tt != Bnullkeep) + if (inull(*tt) && *tt != Bnullkeep) chuck(tt--); ptr2[-1] = del; if (sav) |