From 0b3e7262bf4f968123c299df0c5be6cbabf41156 Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Wed, 12 Jan 2011 10:12:32 +0100 Subject: [PATCH] remove unused argument --- lib/ace/document.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/document.js b/lib/ace/document.js index 6f526227..ef2fab6d 100644 --- a/lib/ace/document.js +++ b/lib/ace/document.js @@ -691,7 +691,7 @@ var Document = function(text, mode) { return end; }; - this.indentRows = function(startRow, endRow, indentString) { + this.indentRows = function(startRow, endRow) { indentString = indentString.replace("\t", this.getTabString()); for (var row=startRow; row<=endRow; row++) { this.$insert({row: row, column:0}, indentString);