aboutsummaryrefslogtreecommitdiff
path: root/grammars/c.bp
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-05-19 21:58:54 -0700
committerBruce Hill <bruce@bruce-hill.com>2021-05-19 21:58:54 -0700
commit5d5817c2a3d21e91db4eaaf607ff881d71b57638 (patch)
treec147550067d237a8d45c35870e18ea4957772c0b /grammars/c.bp
parent6ff7a6753032bc41098042258096bde73ed4bd1c (diff)
Fancier string escape sequences and a bit of cleanup.
Diffstat (limited to 'grammars/c.bp')
-rw-r--r--grammars/c.bp3
1 files changed, 2 insertions, 1 deletions
diff --git a/grammars/c.bp b/grammars/c.bp
index 2c74c3d..9940ffe 100644
--- a/grammars/c.bp
+++ b/grammars/c.bp
@@ -7,7 +7,8 @@
# See the accompanying README.md for more info.
comment: "//" .. $ / "/*" ..%\n "*/"
-string: `" ..%(`\.) `"
+string: `" ..%string-escape `"
+string-escape: `\ (`x 2 Hex / 1-3 `0-7 / .)
keyword:
"auto" / "break" / "case" / "char" / "const" / "continue" / "default" / "do" /
"double" / "else" / "enum" / "extern" / "float" / "for" / "goto" / "if" /