revert stupid fix

This commit is contained in:
Fabian Jakobs 2011-01-12 11:53:31 +01:00
commit ed2300a72c

View file

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