From 189685f5a0527e90f4ff31623d219415e2735fac Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 2 Oct 2014 11:23:51 -0700 Subject: Eliminated unnecessary variable. --- js/stmd.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'js') 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++; -- cgit v1.2.3