# HG changeset patch # User wenzelm # Date 1289594221 -3600 # Node ID 035a272797052e00dfa19d494553c68900cdab6c # Parent b41c6b5a7a35ee0175bff48e29cfcb8b7ae769e6 defensive defaults for more robust experience for new users; diff -r b41c6b5a7a35 -r 035a27279705 src/Pure/System/isabelle_process.ML --- a/src/Pure/System/isabelle_process.ML Fri Nov 12 17:44:03 2010 +0100 +++ b/src/Pure/System/isabelle_process.ML Fri Nov 12 21:37:01 2010 +0100 @@ -168,7 +168,8 @@ val _ = OS.Process.sleep (seconds 0.5); (*yield to raw ML toplevel*) val _ = Output.raw_stdout Symbol.STX; - val _ = quick_and_dirty := true; (* FIXME !? *) + val _ = quick_and_dirty := false; + val _ = Goal.parallel_proofs := 0; val _ = Context.set_thread_data NONE; val _ = Unsynchronized.change print_mode (fold (update op =) [isabelle_processN, Keyword.keyword_statusN, Pretty.symbolicN]);