aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/xml/marshal.go
diff options
context:
space:
mode:
authorRoger Peppe <rogpeppe@gmail.com>2015-04-24 17:20:21 +0100
committerroger peppe <rogpeppe@gmail.com>2015-04-27 15:38:04 +0000
commit4a3e000a48fdfe4cbcfe8970db9c1ebec9c4b89d (patch)
treea84725971fefd062a64ec8f53177535f5e0e2e2d /src/encoding/xml/marshal.go
parentb0b1a660526925d39c5c31e18df68db4d5b6687a (diff)
downloadgo-4a3e000a48fdfe4cbcfe8970db9c1ebec9c4b89d.tar.xz
encoding/xml: do not escape newlines
There is no need to escape newlines in char data - it makes the XML larger and harder to read. Change-Id: I1c1fcee1bdffc705c7428f89ca90af8085d6fb73 Reviewed-on: https://go-review.googlesource.com/9310 Reviewed-by: Nigel Tao <nigeltao@golang.org> Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/encoding/xml/marshal.go')
-rw-r--r--src/encoding/xml/marshal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/xml/marshal.go b/src/encoding/xml/marshal.go
index a0e2058d89..d0899c0fa6 100644
--- a/src/encoding/xml/marshal.go
+++ b/src/encoding/xml/marshal.go
@@ -209,7 +209,7 @@ func (enc *Encoder) EncodeToken(t Token) error {
return err
}
case CharData:
- EscapeText(p, t)
+ escapeText(p, t, false)
case Comment:
if bytes.Contains(t, endComment) {
return fmt.Errorf("xml: EncodeToken of Comment containing --> marker")