From cca2fabf40a165b196b436cf371ebca7eaec7707 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Sat, 8 Sep 2012 20:06:49 +0400 Subject: [PATCH] Fix #66 --- js2-mode.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js2-mode.el b/js2-mode.el index ba112e544..89e4c5309 100644 --- a/js2-mode.el +++ b/js2-mode.el @@ -10410,9 +10410,9 @@ If so, we don't ever want to use bounce-indent." (not (js2-1-line-comment-continuation-p))) (js2-bounce-indent indent-col parse-status bounce-backwards)) ;; just indent to the guesser's likely spot - (t (indent-line-to indent-col))) - (when (plusp offset) - (forward-char offset)))))) + (t (indent-line-to indent-col)))) + (when (plusp offset) + (forward-char offset))))) (defun js2-indent-region (start end) "Indent the region, but don't use bounce indenting." -- 2.39.2