From 8c037bf425bcbe278551db634c35ab4fc0baa075 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 29 Apr 2013 10:46:47 -0600 Subject: [PATCH] Destroy markers properly in command panel operations --- src/packages/command-panel/lib/operation.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packages/command-panel/lib/operation.coffee b/src/packages/command-panel/lib/operation.coffee index 98a880380..6b0ef00d3 100644 --- a/src/packages/command-panel/lib/operation.coffee +++ b/src/packages/command-panel/lib/operation.coffee @@ -32,5 +32,5 @@ class Operation {prefix, suffix, match, range} destroy: -> - @buffer?.destroyMarker(@marker) if @marker? + @marker?.destroy() @buffer?.release()