diff options
author | Hanno <hanno@gentoo.org> | 2019-09-07 09:22:34 +0200 |
---|---|---|
committer | Hanno <hanno@gentoo.org> | 2019-09-07 09:22:34 +0200 |
commit | 03a29e709b821cb5a216719d1f2171fac0ee2c16 (patch) | |
tree | 3b503ca858e7189240fbc51541cf9cd338cf00ad /dev-erlang/fast_yaml/files | |
parent | x11-libs/libfm-extra: New Homepage (diff) | |
download | gentoo-03a29e709b821cb5a216719d1f2171fac0ee2c16.tar.gz gentoo-03a29e709b821cb5a216719d1f2171fac0ee2c16.tar.bz2 gentoo-03a29e709b821cb5a216719d1f2171fac0ee2c16.zip |
dev-erlang/fast_yaml: Add missing patch
Closes: https://bugs.gentoo.org/693342
Signed-off-by: Hanno Boeck <hanno@gentoo.org>
Package-Manager: Portage-2.3.75, Repoman-2.3.17
Diffstat (limited to 'dev-erlang/fast_yaml/files')
-rw-r--r-- | dev-erlang/fast_yaml/files/fast_yaml-1.0.20-dont-escape-simple-quote.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-erlang/fast_yaml/files/fast_yaml-1.0.20-dont-escape-simple-quote.patch b/dev-erlang/fast_yaml/files/fast_yaml-1.0.20-dont-escape-simple-quote.patch new file mode 100644 index 000000000000..453374dbf175 --- /dev/null +++ b/dev-erlang/fast_yaml/files/fast_yaml-1.0.20-dont-escape-simple-quote.patch @@ -0,0 +1,31 @@ +From e789f68895f71b7ad31057177810ca0161bf790e Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Pawe=C5=82=20Chmielowski?= <pchmielowski@process-one.net> +Date: Tue, 6 Aug 2019 12:37:28 +0200 +Subject: [PATCH] Don't escape ' inside "", this is not valid yaml + +This fixes issue #13 +--- + src/fast_yaml.erl | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/src/fast_yaml.erl b/src/fast_yaml.erl +index db2be4a..11e453c 100644 +--- a/src/fast_yaml.erl ++++ b/src/fast_yaml.erl +@@ -146,7 +146,6 @@ encode(B, _) when is_binary(B) -> + ($\s) -> [$\s]; % $\s == "space" + ($\t) -> [$\\, "t"]; % $\t == "tab" + ($\v) -> [$\\, "v"]; % $\v == "vertical tab" +- ($') -> [$\\, $']; % $" == simple quote + ($") -> [$\\, $"]; % $" == double quote + ($\\) -> [$\\, $\\]; % $\\ == backslash + (C) -> C +@@ -382,7 +381,7 @@ encode_decode_vertical_tab_test() -> + + encode_decode_simple_quote_test() -> + FileName = filename:join(["..", "test", "temp_test.yml"]), +- Binary = <<"\'\"\'">>, ++ Binary = <<"'\"'">>, + Encoded = encode([[{'Source', Binary}]]), + file:write_file(FileName, Encoded), + Decoded = decode_from_file(FileName, [plain_as_atom]), |