src/Pure/Isar/theory_target.ML
changeset 22203 efc0cdc01307
parent 21845 da545169fe06
child 22301 1435d027e453
--- a/src/Pure/Isar/theory_target.ML	Sun Jan 28 23:29:16 2007 +0100
+++ b/src/Pure/Isar/theory_target.ML	Sun Jan 28 23:29:17 2007 +0100
@@ -295,11 +295,10 @@
   ProofContext.export_morphism lthy (LocalTheory.target_of lthy) $>
   Morphism.thm_morphism Goal.norm_result;
 
-fun target_name loc lthy =
+fun target_naming loc lthy =
   (if loc = "" then Sign.naming_of (ProofContext.theory_of lthy)
    else ProofContext.naming_of (LocalTheory.target_of lthy))
-  |> NameSpace.qualified_names
-  |> NameSpace.full;
+  |> NameSpace.qualified_names;
 
 
 (* init and exit *)
@@ -318,7 +317,7 @@
       term_syntax = term_syntax loc,
       declaration = declaration loc,
       target_morphism = target_morphism loc,
-      target_name = target_name loc,
+      target_naming = target_naming loc,
       reinit = fn _ =>
         begin is_class loc o (if is_loc then Locale.init loc else ProofContext.init),
       exit = LocalTheory.target_of}