src/Pure/Thy/thy_info.scala
changeset 65439 862bfd2b4fd4
parent 65429 fcff401fb609
child 65471 05e5bffcf1d8
--- a/src/Pure/Thy/thy_info.scala	Fri Apr 07 21:17:18 2017 +0200
+++ b/src/Pure/Thy/thy_info.scala	Sat Apr 08 12:31:29 2017 +0200
@@ -85,7 +85,7 @@
         case (loaded, dep) =>
           val name = dep.name.loaded_theory
           loaded + (name.theory -> name) +
-            (Long_Name.base_name(name.theory) -> name)  // legacy
+            (name.theory_base_name -> name)  // legacy
       }
 
     def loaded_files: List[Path] =
@@ -108,7 +108,7 @@
 
       def node(name: Document.Node.Name): Graph_Display.Node =
         if (parent_base.loaded_theory(name)) parent_session_node
-        else Graph_Display.Node(Long_Name.base_name(name.theory), "theory." + name.theory)
+        else Graph_Display.Node(name.theory_base_name, "theory." + name.theory)
 
       (Graph_Display.empty_graph /: deps) {
         case (g, dep) =>