From: Daniel Carl Date: Wed, 4 Jun 2014 22:22:15 +0000 (+0200) Subject: Fixed unused variable. X-Git-Url: https://git.owens.tech/assets/static/git-logo.png/assets/static/git-logo.png/git?a=commitdiff_plain;h=62c038f0f79a2b25fdec503b688b27a63116c857;p=vimb.git Fixed unused variable. --- diff --git a/src/ex.c b/src/ex.c index e435f09..17d73bf 100644 --- a/src/ex.c +++ b/src/ex.c @@ -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