From 5a2cbbde3b9d995be4635df163b287635e39f5d7 Mon Sep 17 00:00:00 2001 From: Ferruccio Guidi Date: Tue, 26 Nov 2002 11:48:52 +0000 Subject: [PATCH] debug output removed --- helm/ocaml/mathql/mQueryTLexer.mll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/ocaml/mathql/mQueryTLexer.mll b/helm/ocaml/mathql/mQueryTLexer.mll index 5dbb3d1b9..60c561fb5 100644 --- a/helm/ocaml/mathql/mQueryTLexer.mll +++ b/helm/ocaml/mathql/mQueryTLexer.mll @@ -36,7 +36,7 @@ { open MQueryTParser - let debug = true + let debug = false let out s = if debug then prerr_endline s } @@ -53,7 +53,7 @@ rule comm_token = parse and string_token = parse | '"' { DQ } | '\\' _ { STR (String.sub (Lexing.lexeme lexbuf) 1 1) } - | QSTR { prerr_endline "STR"; STR (Lexing.lexeme lexbuf) } + | QSTR { STR (Lexing.lexeme lexbuf) } | eof { EOF } and query_token = parse | "(*" { comm_token lexbuf } -- 2.39.2