summaryrefslogtreecommitdiff
path: root/src/lib9/utf
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-08-31 16:38:50 -0700
committerRuss Cox <rsc@golang.org>2009-08-31 16:38:50 -0700
commitf51f41195296bd25494f6feb6f7c92d371f60863 (patch)
treebcec5bb92ccd84ea33a6bd1f39697e48150d1277 /src/lib9/utf
parent5d874bf1fe9b26222290d4da8cb478ea9a984ffa (diff)
downloadgo-f51f41195296bd25494f6feb6f7c92d371f60863.tar.gz
convert C runtime to 32-bit runes;
rune now unsigned. R=r DELTA=10 (1 added, 0 deleted, 9 changed) OCL=34140 CL=34146
Diffstat (limited to 'src/lib9/utf')
-rw-r--r--src/lib9/utf/utf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib9/utf/utf.h b/src/lib9/utf/utf.h
index ff5193ad4..1479e9f21 100644
--- a/src/lib9/utf/utf.h
+++ b/src/lib9/utf/utf.h
@@ -18,7 +18,7 @@
#include <stdint.h>
-typedef signed int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/
+typedef unsigned int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/
enum
{