src/Pure/Isar/local_theory.ML
changeset 36004 5d79ca55a52b
parent 35798 fd1bb29f8170
child 36451 ddc965e172c4
--- a/src/Pure/Isar/local_theory.ML	Sun Mar 28 17:43:09 2010 +0200
+++ b/src/Pure/Isar/local_theory.ML	Sun Mar 28 19:20:52 2010 +0200
@@ -20,7 +20,6 @@
   val target_of: local_theory -> Proof.context
   val raw_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory
   val raw_theory: (theory -> theory) -> local_theory -> local_theory
-  val checkpoint: local_theory -> local_theory
   val theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory
   val theory: (theory -> theory) -> local_theory -> local_theory
   val target_result: (Proof.context -> 'a * Proof.context) -> local_theory -> 'a * local_theory
@@ -149,7 +148,8 @@
     thy
     |> Sign.map_naming (K (naming_of lthy))
     |> f
-    ||> Sign.restore_naming thy);
+    ||> Sign.restore_naming thy
+    ||> Theory.checkpoint);
 
 fun theory f = #2 o theory_result (f #> pair ());