summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Kirik (snegovick) <snegovick@uprojects.org>2025-12-20 03:45:01 +0300
committerKonstantin Kirik (snegovick) <snegovick@uprojects.org>2025-12-20 03:45:01 +0300
commit96fe523e673ed1d69ba5aee4fbec40e113a6264e (patch)
tree09fb5f13c53a817f753ff00d46bdebad0c2ba53d
parent061cd0c21bc8cf3cd5f7d0b1680fa06573e26bf6 (diff)
Disable debug printing in parser
-rw-r--r--appl/cmd/sh92.b2
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/cmd/sh92.b b/appl/cmd/sh92.b
index 3776e66..0c1ece7 100644
--- a/appl/cmd/sh92.b
+++ b/appl/cmd/sh92.b
@@ -522,5 +522,5 @@ init(ctxt: ref Draw->Context, argv: list of string) {
toks1 := tokenize("AB = 'smth \"test\" '; echo ${AB}; echo $AB", 0);
grammar:= mk_grammar(pctx);
- parse_toks(toks1, grammar);
+ parse_toks(toks1, grammar, 0);
}