From 49b17023a5024761253071d860104a67eb57f142 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Tue, 30 Apr 2013 18:40:14 -0600 Subject: [PATCH] Fix method missing exception in LineMap.logLines --- src/app/line-map.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/line-map.coffee b/src/app/line-map.coffee index fbf0f3b67..48a89de8e 100644 --- a/src/app/line-map.coffee +++ b/src/app/line-map.coffee @@ -186,7 +186,7 @@ class LineMap new Range(start, end) # Internal: - logLines: (start=0, end=@screenLineCount() - 1)-> + logLines: (start=0, end=@getScreenLineCount() - 1)-> for row in [start..end] line = @lineForScreenRow(row).text console.log row, line, line.length