src/Tools/jEdit/src/output_dockable.scala
changeset 43419 6ed49c52d463
parent 43282 5d294220ca43
child 43520 cec9b95fa35d
--- a/src/Tools/jEdit/src/output_dockable.scala	Fri Jun 17 00:10:39 2011 +0200
+++ b/src/Tools/jEdit/src/output_dockable.scala	Fri Jun 17 13:55:53 2011 +0200
@@ -34,7 +34,7 @@
         Document_View(view.getTextArea) match {
           case Some(doc_view) =>
             val cmd = current_command.get
-            val start_ofs = doc_view.model.snapshot().node.command_start(cmd).get
+            val start_ofs = doc_view.update_snapshot().node.command_start(cmd).get
             val buffer = view.getBuffer
             buffer.beginCompoundEdit()
             buffer.remove(start_ofs, cmd.length)
@@ -83,7 +83,7 @@
         case Some(doc_view) =>
           current_command match {
             case Some(cmd) if !restriction.isDefined || restriction.get.contains(cmd) =>
-              val snapshot = doc_view.model.snapshot()
+              val snapshot = doc_view.update_snapshot()
               val filtered_results =
                 snapshot.state(cmd).results.iterator.map(_._2) filter {
                   case XML.Elem(Markup(Markup.TRACING, _), _) => show_tracing  // FIXME not scalable