Default column to 0

This commit is contained in:
Kevin Sawicki
2014-06-18 17:11:34 -07:00
parent 355f54ba00
commit 5af181ffb5

View File

@@ -117,7 +117,7 @@ class Token
buildSoftTabToken: (tabLength) ->
@buildTabToken(tabLength, false, 0)
buildTabToken: (tabLength, isHardTab, column) ->
buildTabToken: (tabLength, isHardTab, column=0) ->
tabStop = tabLength - column % tabLength
new Token(
value: _.multiplyString(" ", tabStop)