Revert "fix regression"

This reverts commit 5a98124d47.
This commit is contained in:
Fabian Jakobs 2011-05-31 08:41:48 +02:00
commit c2f05dd038

View file

@ -128,7 +128,7 @@ var Document = function(text) {
* Get a verbatim copy of the given line as it is in the document
*/
this.getLine = function(row) {
return this.$lines ? (this.$lines[row] || "") : "";
return this.$lines[row] || "";
};
this.getLines = function(firstRow, lastRow) {