src/Pure/Thy/thy_output.ML
changeset 23942 079e99db59d7
parent 23935 2a4e42ec9a54
child 24680 0d355aa59e67
--- a/src/Pure/Thy/thy_output.ML	Mon Jul 23 19:45:48 2007 +0200
+++ b/src/Pure/Thy/thy_output.ML	Mon Jul 23 19:45:49 2007 +0200
@@ -63,14 +63,14 @@
 
 in
 
-val add_commands = Library.change global_commands o fold (add_item "command");
-val add_options = Library.change global_options o fold (add_item "option");
+fun add_commands xs = CRITICAL (fn () => change global_commands (fold (add_item "command") xs));
+fun add_options xs = CRITICAL (fn () => change global_options (fold (add_item "option") xs));
 
 fun command src =
   let val ((name, _), pos) = Args.dest_src src in
     (case Symtab.lookup (! global_commands) name of
       NONE => error ("Unknown text antiquotation command: " ^ quote name ^ Position.str_of pos)
-    | SOME f => transform_failure (curry Antiquote.ANTIQUOTE_FAIL (name, pos)) (f src))
+    | SOME f => f src)
   end;
 
 fun option (name, s) f () =