src/Pure/Thy/thy_info.ML
changeset 72574 d892f6d66402
parent 72511 460d743010bc
child 72612 878c73cdfa0d
--- a/src/Pure/Thy/thy_info.ML	Wed Nov 11 20:58:36 2020 +0100
+++ b/src/Pure/Thy/thy_info.ML	Wed Nov 11 21:00:14 2020 +0100
@@ -61,9 +61,8 @@
     else
       let
         val body = Thy_Output.present_thy options thy segments;
-        val option = Present.document_option options;
       in
-        if #disabled option then ()
+        if Options.string options "document" = "false" then ()
         else
           let
             val thy_name = Context.theory_name thy;
@@ -71,9 +70,7 @@
 
             val latex = Latex.isabelle_body thy_name body;
             val output = [Latex.output_text latex, Latex.output_positions file_pos latex];
-            val _ = Export.export thy (Path.binding0 document_path) (XML.blob output);
-            val _ = if #enabled option then Present.theory_output thy output else ();
-          in () end
+          in Export.export thy (Path.binding0 document_path) (XML.blob output) end
       end));