summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-21 09:27:44 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-21 10:10:21 -0800
commitc737934e286710a2b8094c6255eee98102eed57a (patch)
tree2f522cb3f91dee68b2ea075dc42183e895a150a7
parent66d317950fe7ffc7d571556e4e56e442a0755bb4 (diff)
Adjust lastLineLength before returning.
-rw-r--r--js/lib/blocks.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/lib/blocks.js b/js/lib/blocks.js
index 3e1f0a0..9181992 100644
--- a/js/lib/blocks.js
+++ b/js/lib/blocks.js
@@ -445,6 +445,7 @@ var incorporateLine = function(ln) {
all_matched = false;
break;
case 2: // we've hit end of line for fenced code close and can return
+ this.lastLineLength = ln.length - 1; // -1 for newline
return;
default:
throw 'continue returned illegal value, must be 0, 1, or 2';