]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/js.el (js--ctrl-statement-indentation): Fix indent
authorMihir Rege <mihirrege@gmail.com>
Sun, 24 Nov 2013 22:01:08 +0000 (00:01 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 24 Nov 2013 22:01:08 +0000 (00:01 +0200)
when control-statement is the first statement in a buffer.

Fixes: debbugs:15956
lisp/ChangeLog
lisp/progmodes/js.el

index 36c4c6ae4e8dc03526c17dddd171b20f264deb2d..7365e8c274e484e2e2d82e30eadc2d76380b3f31 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-22  Mihir Rege  <mihirrege@gmail.com>  (tiny change)
+
+       * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
+       when control-statement is the first statement in a buffer (Bug#15956).
+
 2013-11-24  Dmitry Gutov  <dgutov@yandex.ru>
 
        * imenu.el (imenu-generic-skip-comments-and-strings):
index 49a21933133902dc2b0b9dcff40327ca60b5ccd1..17c13607d7100e841a46e81d0f184f5a72666841 100644 (file)
@@ -1749,8 +1749,8 @@ nil."
     (when (save-excursion
             (and (not (eq (point-at-bol) (point-min)))
                  (not (looking-at "[{]"))
+                 (js--re-search-backward "[[:graph:]]" nil t)
                  (progn
-                   (js--re-search-backward "[[:graph:]]" nil t)
                    (or (eobp) (forward-char))
                    (when (= (char-before) ?\)) (backward-list))
                    (skip-syntax-backward " ")