# HG changeset patch # User wenzelm # Date 1343315873 -7200 # Node ID 6d4ea2efa64be134e3172a256830c2789ba2f046 # Parent 5deda0549f97eac6d059df2c41336fb46ab9caf8 more build options; diff -r 5deda0549f97 -r 6d4ea2efa64b etc/options --- a/etc/options Thu Jul 26 17:16:02 2012 +0200 +++ b/etc/options Thu Jul 26 17:17:53 2012 +0200 @@ -27,5 +27,11 @@ declare names_short : bool = false declare names_unique : bool = true +declare thy_output_display : bool = false +declare thy_output_quotes : bool = false +declare thy_output_indent : int = 0 +declare thy_output_source : bool = false +declare thy_output_break : bool = false + declare timing : bool = false diff -r 5deda0549f97 -r 6d4ea2efa64b src/Pure/System/build.ML --- a/src/Pure/System/build.ML Thu Jul 26 17:16:02 2012 +0200 +++ b/src/Pure/System/build.ML Thu Jul 26 17:17:53 2012 +0200 @@ -35,6 +35,11 @@ |> Unsynchronized.setmp Name_Space.names_long_default (Options.bool options "names_long") |> Unsynchronized.setmp Name_Space.names_short_default (Options.bool options "names_short") |> Unsynchronized.setmp Name_Space.names_unique_default (Options.bool options "names_unique") + |> Unsynchronized.setmp Thy_Output.display_default (Options.bool options "thy_output_display") + |> Unsynchronized.setmp Thy_Output.quotes_default (Options.bool options "thy_output_quotes") + |> Unsynchronized.setmp Thy_Output.indent_default (Options.int options "thy_output_indent") + |> Unsynchronized.setmp Thy_Output.source_default (Options.bool options "thy_output_source") + |> Unsynchronized.setmp Thy_Output.break_default (Options.bool options "thy_output_break") |> Unsynchronized.setmp Toplevel.timing (Options.bool options "timing"); fun use_theories (options, thys) =