# HG changeset patch # User wenzelm # Date 1343127274 -7200 # Node ID 6ebb6cdd36a5965af719a4688cd55e9323b70c40 # Parent 9d5ce7f1002d88c648a94429353af0a423ef951c actually negate "document" (cf. 7483aa690b4f); diff -r 9d5ce7f1002d -r 6ebb6cdd36a5 src/Pure/System/build.ML --- a/src/Pure/System/build.ML Tue Jul 24 12:47:48 2012 +0200 +++ b/src/Pure/System/build.ML Tue Jul 24 12:54:34 2012 +0200 @@ -24,7 +24,7 @@ (Options.int options "parallel_proofs_threshold") |> Unsynchronized.setmp Multithreading.trace (Options.int options "threads_trace") |> Unsynchronized.setmp Multithreading.max_threads (Options.int options "threads") - |> (case Options.string options "document" of "" => false | "false" => false | _ => true) ? + |> (case Options.string options "document" of "" => true | "false" => true | _ => false) ? Present.no_document |> Unsynchronized.setmp quick_and_dirty (Options.bool options "quick_and_dirty");