summaryrefslogtreecommitdiff
path: root/js/codeq/prolog.js
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-10-01 14:35:05 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-10-01 14:35:05 +0200
commit4445c72f8034c8d569b8ac57a308e8703b7dbda2 (patch)
tree0adee7c7bdbf2441f13a8df0bc6072ced2ddc027 /js/codeq/prolog.js
parentdeb9495a60c76b0ccbcc2f55a598b400fcfff666 (diff)
Bugfix: remove action has type 'rm', not 'r'
Diffstat (limited to 'js/codeq/prolog.js')
-rw-r--r--js/codeq/prolog.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/codeq/prolog.js b/js/codeq/prolog.js
index a9ce848..6447b86 100644
--- a/js/codeq/prolog.js
+++ b/js/codeq/prolog.js
@@ -281,7 +281,7 @@
pos = codeq.codePointCount(doc.getRange(firstCharacterPos, changeObj.from));
if (changeObj.removed) {
- activityHandler.queueTrace({'typ': 'r', 'off': pos, 'len': codeq.codePointCount(changeObj.removed.join(''))});
+ activityHandler.queueTrace({'typ': 'rm', 'off': pos, 'len': codeq.codePointCount(changeObj.removed.join(''))});
}
if (changeObj.text) {