From ed2300a72cd538196d823fbc48edac6db12ab9f9 Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Wed, 12 Jan 2011 11:53:31 +0100 Subject: [PATCH] revert stupid fix --- 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 4edb3167..e7d933d6 100644 --- a/lib/ace/document.js +++ b/lib/ace/document.js @@ -701,7 +701,7 @@ var Document = function(text, mode) { return end; }; - this.indentRows = function(startRow, endRow) { + this.indentRows = function(startRow, endRow, indentString) { indentString = indentString.replace("\t", this.getTabString()); for (var row=startRow; row<=endRow; row++) { this.$insert({row: row, column:0}, indentString);