pull/2518/head
webzwo0i 2015-02-15 14:56:20 +01:00
parent 4313bd27f8
commit b4d4b16b1f
1 changed files with 1 additions and 1 deletions

View File

@ -910,7 +910,7 @@ exports.pack = function (oldLen, newLen, opsStr, bank) {
* @params str {string} String to which a Changeset should be applied * @params str {string} String to which a Changeset should be applied
*/ */
exports.applyToText = function (cs, str) { exports.applyToText = function (cs, str) {
var totalNrOfLines = str.split("\n").length; var totalNrOfLines = str.split("\n").length - 1;
var removedLines = 0; var removedLines = 0;
var unpacked = exports.unpack(cs); var unpacked = exports.unpack(cs);
exports.assert(str.length == unpacked.oldLen, "mismatched apply: ", str.length, " / ", unpacked.oldLen); exports.assert(str.length == unpacked.oldLen, "mismatched apply: ", str.length, " / ", unpacked.oldLen);