diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-10-02 11:23:51 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-10-02 11:23:51 -0700 |
commit | 189685f5a0527e90f4ff31623d219415e2735fac (patch) | |
tree | 430bc0b2c8c6300192c7f259899a98e8008b9e68 /js | |
parent | fb0c0cc2741120e3706c7698b15a510c40fc71c0 (diff) |
Eliminated unnecessary variable.
Diffstat (limited to 'js')
-rwxr-xr-x | js/stmd.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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++; |