diff options
author | Robert Griesemer <gri@golang.org> | 2008-03-26 16:12:43 -0700 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2008-03-26 16:12:43 -0700 |
commit | b9829f88caae9d67410240956843ea812d44fe22 (patch) | |
tree | 97ea4ff4f2116cdaffd988917aad0a788ec6454b /test/char_lit.go | |
parent | 966105d2c48faf6656dea26761c910f14399f60e (diff) | |
download | golang-b9829f88caae9d67410240956843ea812d44fe22.tar.gz |
- Make Coco/R-based parser work w/ UTF-8 encoded files even if there is
no (optional) UTF-8 marker present.
SVN=113931
Diffstat (limited to 'test/char_lit.go')
-rw-r--r-- | test/char_lit.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/char_lit.go b/test/char_lit.go index 66ffec208..6af96be9c 100644 --- a/test/char_lit.go +++ b/test/char_lit.go @@ -9,9 +9,8 @@ package main func main() { [ ' ', 'a', - // need to fix Coco/R scanner to read Unicode. - // 'ä', - //'本', + 'ä', + '本', '\a', '\b', '\f', |