Skip to content

Commit f513ba0

Browse files
committed
Update generated code
1 parent bf3fba5 commit f513ba0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/vimlparser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ function ExArg() {
464464
ea.force_ff = 0;
465465
ea.force_enc = 0;
466466
ea.bad_char = 0;
467-
ea.linepos = [];
467+
ea.linepos = {};
468468
ea.cmdpos = [];
469469
ea.argpos = [];
470470
ea.cmd = {};

py/vimlparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def ExArg():
404404
ea.force_ff = 0
405405
ea.force_enc = 0
406406
ea.bad_char = 0
407-
ea.linepos = []
407+
ea.linepos = AttributeDict({})
408408
ea.cmdpos = []
409409
ea.argpos = []
410410
ea.cmd = AttributeDict({})

0 commit comments

Comments
 (0)