src/Pure/Thy/thy_load.ML
changeset 56204 f70e69208a8c
parent 56135 efa24d31e595
--- a/src/Pure/Thy/thy_load.ML	Tue Mar 18 13:36:28 2014 +0100
+++ b/src/Pure/Thy/thy_load.ML	Tue Mar 18 15:29:58 2014 +0100
@@ -229,11 +229,11 @@
 in
 
 val _ = Theory.setup
- (Thy_Output.antiquotation (Binding.name "file") (Scan.lift (Parse.position Parse.path))
+ (Thy_Output.antiquotation @{binding file} (Scan.lift (Parse.position Parse.path))
     (file_antiq true o #context) #>
-  Thy_Output.antiquotation (Binding.name "file_unchecked") (Scan.lift (Parse.position Parse.path))
+  Thy_Output.antiquotation @{binding file_unchecked} (Scan.lift (Parse.position Parse.path))
     (file_antiq false o #context) #>
-  ML_Antiquotation.value (Binding.name "path")
+  ML_Antiquotation.value @{binding path}
     (Args.context -- Scan.lift (Parse.position Parse.path) >> (fn (ctxt, arg) =>
       let val path = check_path true ctxt Path.current arg
       in "Path.explode " ^ ML_Syntax.print_string (Path.implode path) end)));