avoid redefinition of @{theory} antiquotation
authorhaftmann
Sat, 18 Feb 2012 20:50:11 +0100
changeset 46524 8d51b375e926
parent 46523 7ca897381b26
child 46525 af3df09590f9
avoid redefinition of @{theory} antiquotation
doc-src/antiquote_setup.ML
--- a/doc-src/antiquote_setup.ML	Sat Feb 18 20:13:38 2012 +0100
+++ b/doc-src/antiquote_setup.ML	Sat Feb 18 20:50:11 2012 +0100
@@ -151,9 +151,6 @@
 fun check_tool name =
   File.exists (Path.append (Path.explode "~~/lib/Tools") (Path.basic name));
 
-fun is_ancestor thy name =
-  exists (fn thy => Context.theory_name thy = name) (thy :: Context.ancestors_of thy);
-
 val arg = enclose "{" "}" o clean_string;
 
 fun entity check markup kind index =
@@ -210,7 +207,6 @@
   entity_antiqs no_check "" "inference" #>
   entity_antiqs no_check "isatt" "executable" #>
   entity_antiqs (K check_tool) "isatt" "tool" #>
-  entity_antiqs (is_ancestor o Proof_Context.theory_of) "" "theory" #>
   entity_antiqs (thy_check ML_Context.intern_antiq ML_Context.defined_antiq)
     "" Isabelle_Markup.ML_antiquotationN;