remove unused argument

This commit is contained in:
Fabian Jakobs 2011-01-12 10:12:32 +01:00
commit 0b3e7262bf

View file

@ -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);