src/Pure/Isar/named_target.ML
changeset 53088 6cd0feb85e35
parent 52140 88a69da5d3fa
child 55763 4b3907cb5654
--- a/src/Pure/Isar/named_target.ML	Mon Aug 19 20:37:36 2013 +0200
+++ b/src/Pure/Isar/named_target.ML	Mon Aug 19 20:47:09 2013 +0200
@@ -45,15 +45,16 @@
   Data.get #> Option.map (fn Target {target, is_locale, is_class, ...} =>
     {target = target, is_locale = is_locale, is_class = is_class});
 
-fun is_theory lthy = Option.map #target (peek lthy) = SOME ""
-  andalso Local_Theory.level lthy = 1;
+fun is_theory lthy =
+  Option.map #target (peek lthy) = SOME "" andalso Local_Theory.level lthy = 1;
 
 fun the_name lthy =
   let
     val _ = Local_Theory.assert_bottom true lthy;
-  in case Option.map #target (peek lthy) of
+  in
+    (case Option.map #target (peek lthy) of
       SOME target => target
-    | _ => error "Not in a named target"
+    | _ => error "Not in a named target")
   end;