summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleš Smodiš <aless@guru.si>2015-07-17 12:45:01 +0200
committerAleš Smodiš <aless@guru.si>2015-07-17 12:45:01 +0200
commit42ee67384fa52bc3db4716ffb9aff2cd0dda3f5e (patch)
tree647843dd331185eedf44fb663f852f6979e2c48c
parent3356ce13478bf5724f9e3e03c2b3cc1cc8598f53 (diff)
Bugfix: missing semicolon.
-rw-r--r--js/def_parser.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/def_parser.js b/js/def_parser.js
index f09ecd1..87c9e49 100644
--- a/js/def_parser.js
+++ b/js/def_parser.js
@@ -90,7 +90,7 @@
var p = pos, i, j, is_escaped, s;
while (p < n) {
i = input.indexOf(type, p);
- j = input.indexOf('\n', p)
+ j = input.indexOf('\n', p);
if (i < 0) throw new Error('Unterminated string at position #' + pos + ', line ' + row + ', character ' + col);
if ((j >= 0) && (j < i)) throw new Error('Unterminated string at position #' + pos + ', line ' + row + ', character ' + col);
is_escaped = false;