Remove "Applying Diff" message on reopen

Fixes #160
This commit is contained in:
Zachary Yedidia
2016-06-02 13:05:57 -04:00
parent e6c6c7f47d
commit 7e218562a3

View File

@@ -62,7 +62,6 @@ func NewEventHandler(buf *Buffer) *EventHandler {
// This means that we can transform the buffer into any string and still preserve undo/redo
// through insert and delete events
func (eh *EventHandler) ApplyDiff(new string) {
messenger.Message("Applying diff")
differ := dmp.New()
diff := differ.DiffMain(eh.buf.String(), new, false)
var charNum int