diff options
author | Adam Scarr <adam@vektah.net> | 2017-08-10 22:06:08 +1000 |
---|---|---|
committer | Adam Scarr <adam@vektah.net> | 2017-08-10 22:06:08 +1000 |
commit | 8a92b5348f8cf6769f30237df906ee9ce71ad237 (patch) | |
tree | ee23dda7188bab1a01892fba4c1c697263c3a9a6 /state.go | |
parent | a0e66b1c46ec57218f8a95a21ace7cbbceb29ec2 (diff) |
Unicode safe by default
Diffstat (limited to 'state.go')
-rw-r--r-- | state.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ func UnicodeWhitespace(s *State) { func NewState(input string) *State { return &State{ Input: input, - WS: ASCIIWhitespace, + WS: UnicodeWhitespace, } } |