about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2015-08-17 21:53:12 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2015-08-17 21:53:16 +0000
commitfa573a35794e46f3e3729853be03508d0e20985d (patch)
tree3e1d0e12a2d6070b4bef6de09099eba9336803b4 /Src
parentc799e01c6875871c0ecd01aed0da8779fc9bc92a (diff)
downloadzsh-fa573a35794e46f3e3729853be03508d0e20985d.tar.gz
zsh-fa573a35794e46f3e3729853be03508d0e20985d.tar.xz
zsh-fa573a35794e46f3e3729853be03508d0e20985d.zip
36109: bracketed-paste: change quoting style
Diffstat (limited to 'Src')
-rw-r--r--Src/Zle/zle_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_misc.c b/Src/Zle/zle_misc.c
index 62fb8c86f..d25e4ebef 100644
--- a/Src/Zle/zle_misc.c
+++ b/Src/Zle/zle_misc.c
@@ -779,7 +779,7 @@ bracketedpaste(char **args)
 	int n;
 	ZLE_STRING_T wpaste;
 	wpaste = stringaszleline((zmult == 1) ? pbuf :
-	    quotestring(pbuf, NULL, QT_BACKSLASH), 0, &n, NULL, NULL);
+	    quotestring(pbuf, NULL, QT_SINGLE_OPTIONAL), 0, &n, NULL, NULL);
 	cuttext(wpaste, n, CUT_REPLACE);
 	if (!(zmod.flags & MOD_VIBUF)) {
 	    kct = -1;