src/Pure/PIDE/document.scala
changeset 72861 3f5e6da08687
parent 72860 64378eaf393d
child 72869 015a61936c13
--- a/src/Pure/PIDE/document.scala	Wed Dec 09 20:33:02 2020 +0100
+++ b/src/Pure/PIDE/document.scala	Wed Dec 09 22:07:14 2020 +0100
@@ -988,16 +988,16 @@
       }
     }
 
-    def end_theory(theory: String): (Snapshot, State) =
-      theories.collectFirst({ case (_, st) if st.command.node_name.theory == theory => st }) match {
+    def end_theory(id: Document_ID.Exec): (Snapshot, State) =
+      theories.get(id) match {
         case None => fail
         case Some(st) =>
           val command = st.command
           val node_name = command.node_name
           val command1 =
-            Command.unparsed(command.source, theory = true, id = command.id, node_name = node_name,
+            Command.unparsed(command.source, theory = true, id = id, node_name = node_name,
               blobs_info = command.blobs_info, results = st.results, markups = st.markups)
-          val state1 = copy(theories = theories - command1.id)
+          val state1 = copy(theories = theories - id)
           val snapshot = state1.command_snippet(command1)
           (snapshot, state1)
       }