aboutsummaryrefslogtreecommitdiff
path: root/module/c/lex.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/c/lex.scm')
-rw-r--r--module/c/lex.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/c/lex.scm b/module/c/lex.scm
index b6523a87..b3c82001 100644
--- a/module/c/lex.scm
+++ b/module/c/lex.scm
@@ -72,7 +72,7 @@
(define-peg-pattern base-16-char all
(and (ignore "x") base-16-digit (? base-16-digit)))
-(define-peg-pattern escaped-char body
+(define-peg-pattern escaped-char all
(and (ignore "\\") (or base-16-char
base-8-char
peg-any)))