summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2006-03-25 17:57:52 +0000
committerJohn Millaway <john43@users.sourceforge.net>2006-03-25 17:57:52 +0000
commitcc60b503d2a24f3587551c4fa27d93d9d266f835 (patch)
treeaf2fa154ed35b363da95f8486a9e64f919dc6007 /doc
parent7b9bd5eeeb81ecf27ee2dea6769040144d422876 (diff)
Changed explicit 'A'-'Z' to isupper(), where correct to do so.
Documentation.
Diffstat (limited to 'doc')
-rw-r--r--doc/flex.texi5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/flex.texi b/doc/flex.texi
index 3cc533b..97d2275 100644
--- a/doc/flex.texi
+++ b/doc/flex.texi
@@ -8405,6 +8405,11 @@ Technically, the above pattern does not encompass all possible C99 identifiers,
"implementation-defined" characters. In practice, C compilers follow the above pattern, with the
addition of the @samp{$} character.
+@item UTF-8 Encoded Unicode Code Point
+@verbatim
+[\x09\x0A\x0D\x20-\x7E]|[\xC2-\xDF][\x80-\xBF]|\xE0[\xA0-\xBF][\x80-\xBF]|[\xE1-\xEC\xEE\xEF]([\x80-\xBF]{2})|\xED[\x80-\x9F][\x80-\xBF]|\xF0[\x90-\xBF]([\x80-\xBF]{2})|[\xF1-\xF3]([\x80-\xBF]{3})|\xF4[\x80-\x8F]([\x80-\xBF]{2})
+@end verbatim
+
@end table
@node Quoted Constructs, Addresses, Identifiers, Common Patterns