From bcd3f38eafae588bc9dbd0de460e6a85f9e6de57 Mon Sep 17 00:00:00 2001 From: ian Date: Thu, 14 Jun 2012 05:04:04 +0000 Subject: compiler, reflect: Quote package path with tabs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188548 138bc75d-0d04-0410-961f-82ee72b054a4 --- libgo/go/reflect/type.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgo/go') diff --git a/libgo/go/reflect/type.go b/libgo/go/reflect/type.go index a264ef1e082..93021bae263 100644 --- a/libgo/go/reflect/type.go +++ b/libgo/go/reflect/type.go @@ -444,7 +444,7 @@ func (t *commonType) String() string { r := make([]byte, len(s)) j := 0 for i := 0; i < len(s); i++ { - if s[i] == '"' { + if s[i] == '\t' { q = !q } else if !q { r[j] = s[i] -- cgit v1.2.1