aboutsummaryrefslogtreecommitdiff
path: root/libgo
diff options
context:
space:
mode:
Diffstat (limited to 'libgo')
-rw-r--r--libgo/go/reflect/type.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/reflect/type.go b/libgo/go/reflect/type.go
index a264ef1..93021ba 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]