From: Russ Cox Date: Wed, 17 Feb 2010 00:47:18 +0000 (-0800) Subject: spec: disallow NUL in source files X-Git-Tag: weekly.2010-02-17~12 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b7d9ffeecd4fd9afe0922b08998e85f0d0672582;p=gostls13.git spec: disallow NUL in source files R=r CC=golang-dev https://golang.org/cl/209042 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 0f6475eac5..06dcf3918e 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -89,6 +89,9 @@ will use the term character to refer to a Unicode code point. Each code point is distinct; for instance, upper and lower case letters are different characters.

+

+Source code must not contain the NUL character (U+0000). +

Characters