From 0ada410ece61f805c66b63eb15bb8584c3e584cd Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 15 Apr 2009 20:27:45 -0700 Subject: code changes for array conversion. as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534 --- src/lib/go/scanner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/go') diff --git a/src/lib/go/scanner.go b/src/lib/go/scanner.go index e35cc5c72..ea5f13769 100644 --- a/src/lib/go/scanner.go +++ b/src/lib/go/scanner.go @@ -104,7 +104,7 @@ func charString(ch int) string { case '\v': s = `\v`; case '\\': s = `\\`; case '\'': s = `\'`; - default : s = utf8.EncodeRuneToString(ch); + default : s = string(ch); } return "'" + s + "' (U+" + strconv.Itob(ch, 16) + ")"; } -- cgit v1.2.3