]> matita.cs.unibo.it Git - helm.git/commitdiff
moved a debug print so that it is executed for each phrase
authorStefano Zacchiroli <zack@upsilon.cc>
Thu, 10 Feb 2005 16:12:17 +0000 (16:12 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Thu, 10 Feb 2005 16:12:17 +0000 (16:12 +0000)
helm/matita/matita.ml
helm/matita/matitaInterpreter.ml

index 59ec55f3a2714ce82c1ba67db6d4e1f7b211a876..3052e975e5cab70b78f8a86f7137bba1cda31738 100644 (file)
@@ -95,7 +95,6 @@ let console_callback s =
     | tac -> tac
   in
   let needed_by_script ast =
-    prerr_endline (TacticAstPp.pp_tactical ast);
     match strip_locations ast with
     | A.Tactic _
     | A.Command
@@ -104,6 +103,7 @@ let console_callback s =
     | _ -> false
   in
   let ast = disambiguator#parserr#parseTactical (Stream.of_string s) in
+  debug_print (sprintf "evaluating '%s'" s);
   if needed_by_script ast then
     script#advance s
   else
index 96b765c704350d95307b70f220d1d6e1cdcd8a70..a231c08919564e482c3f27fd2716392d31b8162a 100644 (file)
@@ -91,7 +91,6 @@ class virtual interpreterState =
       res
 
     method evalPhrase s =
-      debug_print (sprintf "evaluating '%s'" s);
       self#_evalTactical (self#parsePhrase (Stream.of_string s))
 
     method evalAst ast = self#_evalTactical ast