diff options
author | Aleš Smodiš <aless@guru.si> | 2015-09-18 15:16:05 +0200 |
---|---|---|
committer | Aleš Smodiš <aless@guru.si> | 2015-09-18 15:16:05 +0200 |
commit | 345472c7f88435cd8d9aa5d26513358376c78c69 (patch) | |
tree | c111fe0af2411f944da9f3c4fe0cd9517436b2c2 /js | |
parent | bcfa340a112009500a4d2b2c778187c104793a1a (diff) |
Bugfix of the previous Bugfix (typo).
Diffstat (limited to 'js')
-rw-r--r-- | js/codeq/python.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/codeq/python.js b/js/codeq/python.js index 0075a72..e856c08 100644 --- a/js/codeq/python.js +++ b/js/codeq/python.js @@ -323,7 +323,7 @@ pos = codeq.codePointCount(doc.getRange(firstCharacterPos, changeObj.from)); if (changeObj.removed) { - activityHandler.queueTrace({'typ': 'rm', 'off': pos, 'len': codeq.codePointCount(changeObj.removed).join('')}); + activityHandler.queueTrace({'typ': 'rm', 'off': pos, 'len': codeq.codePointCount(changeObj.removed.join(''))}); } if (changeObj.text) { |