aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2020-10-14 17:26:45 -0600
committerMelody Horn <melody@boringcactus.com>2020-10-14 17:26:45 -0600
commit04e983883d52d05766649ff7923a4d7755fe8074 (patch)
tree6e2fd5be96643f50eb5d7779d21ed177f4077d1f
parentf88a1eaa4a7e9016531b76a9f6e5b82a44f1111e (diff)
downloadspec-04e983883d52d05766649ff7923a4d7755fe8074.tar.gz
spec-04e983883d52d05766649ff7923a4d7755fe8074.zip
allow null escape
-rw-r--r--syntax.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/syntax.md b/syntax.md
index 6b94b8b..b4d0dc8 100644
--- a/syntax.md
+++ b/syntax.md
@@ -93,6 +93,7 @@ The following sequences of characters are *escape sequences*:
- `\r`
- `\n`
- `\t`
+- `\0`
- `\x` followed by two characters drawn from the set {`0`, `1`, `2`, `3`, `4`, `5`, `6`, `7`, `8`, `9`, `A`, `a`, `B`, `b`, `C`, `c`, `D`, `d`, `E`, `e`, `F`, `f`}
- `\u` followed by four characters drawn from the set {`0`, `1`, `2`, `3`, `4`, `5`, `6`, `7`, `8`, `9`, `A`, `a`, `B`, `b`, `C`, `c`, `D`, `d`, `E`, `e`, `F`, `f`}
- `\U` followed by eight characters drawn from the set {`0`, `1`, `2`, `3`, `4`, `5`, `6`, `7`, `8`, `9`, `A`, `a`, `B`, `b`, `C`, `c`, `D`, `d`, `E`, `e`, `F`, `f`}