src/Pure/PIDE/document.scala
changeset 38425 e467db701d78
parent 38424 940a404e45e2
child 38426 2858ec7b6dd8
--- a/src/Pure/PIDE/document.scala	Sun Aug 15 21:03:13 2010 +0200
+++ b/src/Pure/PIDE/document.scala	Sun Aug 15 21:42:13 2010 +0200
@@ -34,7 +34,7 @@
 
   /* named nodes -- development graph */
 
-  type Node_Text_Edit = (String, List[Text_Edit])  // FIXME None: remove
+  type Node_Text_Edit = (String, List[Text.Edit])  // FIXME None: remove
 
   type Edit[C] =
    (String,  // node name
@@ -141,7 +141,7 @@
     def tip: Change = undo_list.head
     def +(ch: Change): History = new History(ch :: undo_list)
 
-    def snapshot(name: String, pending_edits: List[Text_Edit], state_snapshot: State): Snapshot =
+    def snapshot(name: String, pending_edits: List[Text.Edit], state_snapshot: State): Snapshot =
     {
       val found_stable = undo_list.find(change =>
         change.is_finished && state_snapshot.is_assigned(change.current.join))