summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-10-02 11:23:51 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-10-02 11:23:51 -0700
commit189685f5a0527e90f4ff31623d219415e2735fac (patch)
tree430bc0b2c8c6300192c7f259899a98e8008b9e68 /js
parentfb0c0cc2741120e3706c7698b15a510c40fc71c0 (diff)
Eliminated unnecessary variable.
Diffstat (limited to 'js')
-rwxr-xr-xjs/stmd.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/stmd.js b/js/stmd.js
index 788809b..f4ccdf4 100755
--- a/js/stmd.js
+++ b/js/stmd.js
@@ -3205,8 +3205,7 @@
switch (container.t) {
case 'BlockQuote':
- var matched = indent <= 3 && ln.charAt(first_nonspace) === '>';
- if (matched) {
+ if (indent <= 3 && ln.charAt(first_nonspace) === '>') {
offset = first_nonspace + 1;
if (ln.charAt(offset) === ' ') {
offset++;