]> gitweb.factorcode.org Git - factor.git/blobdiff - core/syntax/syntax-docs.factor
strings.parser: support octal escapes of 1, 2, or 3 octal digits
[factor.git] / core / syntax / syntax-docs.factor
index 31aa1ddb7ae02377bd90a2fcea0d1e23e99d0b1b..24f72dc51df7753862ee09db4f680a20f9f861a4 100644 (file)
@@ -192,6 +192,7 @@ ARTICLE: "escape" "Character escape codes"
     { { $snippet "\\u" { $emphasis "xxxxxx" } } { "The Unicode code point with hexadecimal number " { $snippet { $emphasis "xxxxxx" } } } }
     { { $snippet "\\u{" { $emphasis "xx" } "}" } { "The Unicode code point with hexadecimal number " { $snippet { $emphasis "xx" } } } }
     { { $snippet "\\u{" { $emphasis "name" } "}" } { "The Unicode code point named " { $snippet { $emphasis "name" } } } }
+    { { $snippet "\\xxx" } "an octal escape specified by one, two, or three octal digits" }
 } ;
 
 ARTICLE: "syntax-strings" "Character and string syntax"