diff options
author | Daniel Carl <danielcarl@gmx.de> | 2014-06-05 00:22:15 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2014-06-05 00:22:15 +0200 |
commit | 62c038f0f79a2b25fdec503b688b27a63116c857 (patch) | |
tree | d1f56a058850cd2f1489522125119aed2c5f2ac3 /src | |
parent | ce718c55c61ffea9e1c97f5a34fae2868ba35bcd (diff) |
Fixed unused variable.
Diffstat (limited to 'src')
-rw-r--r-- | src/ex.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -663,7 +663,7 @@ static gboolean parse_rhs(const char **input, ExArg *arg) /* get char until the end of command */ while (**input && **input != '\n' && **input != '|') { /* check for expansion placeholder */ - util_parse_expansion(input, arg->rhs, flags, "|~$%\\"); + util_parse_expansion(input, arg->rhs, flags, quoteable); if (VB_IS_SEPARATOR(**input)) { /* add tilde expansion for next loop needs to be first char or to |