From: Rob Pike Date: Sun, 12 Apr 2009 23:13:34 +0000 (-0700) Subject: change replacement rune to its correct value, fffd X-Git-Tag: weekly.2009-11-06~1858 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9ddeb2105f6c6b87a15bc020684aa2b8f97678d4;p=gostls13.git change replacement rune to its correct value, fffd R=ken OCL=27342 CL=27342 --- diff --git a/src/runtime/string.c b/src/runtime/string.c index 37f6ff0a1b..4d89e96001 100644 --- a/src/runtime/string.c +++ b/src/runtime/string.c @@ -193,7 +193,7 @@ static int32 chartorune(int32 *rune, byte *str); enum { Runeself = 0x80, - Runeerror = 0xfff8, // fffd in plan9 + Runeerror = 0xfffd, }; // func stringiter(string, int) (retk int);