aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-01-05 15:18:50 +0100
committerMattias Andrée <m@maandree.se>2026-02-23 07:53:09 +0100
commit28b0a361363acbd9a2d291d82e145fb3757ed9f8 (patch)
treeb86f7c42410ada38631bbdd4ada2a3d4120660f6 /README
parentMake deterministic the default (diff)
downloadlibparser-28b0a361363acbd9a2d291d82e145fb3757ed9f8.tar.gz
libparser-28b0a361363acbd9a2d291d82e145fb3757ed9f8.tar.bz2
libparser-28b0a361363acbd9a2d291d82e145fb3757ed9f8.tar.xz
Add \t and improve printing of text, and print the input text when PRINT_ACTIONS used
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index 23d231b..b5b833e 100644
--- a/README
+++ b/README
@@ -52,7 +52,7 @@ EXTENDED DESCRIPTION
(* STRINGS *)
- _escape_simple = "\\" | "\"" | "'" | "a" | "b" | "f" | "n" | "r" | "v";
+ _escape_simple = "\\" | "\"" | "'" | "a" | "b" | "f" | "n" | "r" | "t" | "v";
_escape_hex = ("x" | "X"), _xdigit, _xdigit;
_escape_octal = _octal, {_octal}; (* May not exceed 255 in base 10 *)
_escape = _escape_simple | _escape_hex | _escape_octal | -;