From 62c038f0f79a2b25fdec503b688b27a63116c857 Mon Sep 17 00:00:00 2001
From: Daniel Carl <danielcarl@gmx.de>
Date: Thu, 5 Jun 2014 00:22:15 +0200
Subject: [PATCH] Fixed unused variable.

---
 src/ex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
2.20.1