From a61b057aeaae4e22cecf09be87dac0705253335a Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Thu, 12 Dec 2013 16:34:48 -0800 Subject: [PATCH] Eliminate exceptions in Editor::inspect --- src/editor.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor.coffee b/src/editor.coffee index b317d2c7a..cba3382fd 100644 --- a/src/editor.coffee +++ b/src/editor.coffee @@ -1400,7 +1400,7 @@ class Editor extends Model # Private: inspect: -> - JSON.stringify @state.toObject() + "" # Private: logScreenLines: (start, end) -> @displayBuffer.logLines(start, end)