about summary refs log tree commit diff
path: root/Src/Zle/compcore.c
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2016-09-09 09:38:06 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2016-09-11 09:22:18 +0000
commitf368720b8b9b481f82cef2e84a7e035864dff5f1 (patch)
treeec268832d822c899e26439cc10fb8aadc71ce7bd /Src/Zle/compcore.c
parent1b6033489b6de3caba8f6cf09cc2f10287b3904c (diff)
downloadzsh-f368720b8b9b481f82cef2e84a7e035864dff5f1.tar.gz
zsh-f368720b8b9b481f82cef2e84a7e035864dff5f1.tar.xz
zsh-f368720b8b9b481f82cef2e84a7e035864dff5f1.zip
39252: internal: quotestring: Drop the 'e' parameter, which no caller uses.
Diffstat (limited to 'Src/Zle/compcore.c')
-rw-r--r--Src/Zle/compcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/compcore.c b/Src/Zle/compcore.c
index ae7068fc9..2f9fb3308 100644
--- a/Src/Zle/compcore.c
+++ b/Src/Zle/compcore.c
@@ -1055,7 +1055,7 @@ multiquote(char *s, int ign)
 		p += ign;
 	    while (*p) {
 		if (ign >= 0 || p[1])
-		    s = quotestring(s, NULL, *p);
+		    s = quotestring(s, *p);
 		p++;
 	    }
 	}