1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 04:30:24 +02:00

36109: bracketed-paste: change quoting style

This commit is contained in:
Daniel Shahaf 2015-08-17 21:53:12 +00:00
parent c799e01c68
commit fa573a3579
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2015-08-17 Daniel Shahaf <d.s@daniel.shahaf.name>
* 36109: Src/Zle/zle_misc.c: bracketed-paste: change quoting
style
* 36186: Etc/FAQ.yo: FAQ (3.24): Update for bracketed paste
2015-08-17 Mikael Magnusson <mikachu@gmail.com>

View file

@ -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;