]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix indentation error in js.el
authorTom Tromey <tom@tromey.com>
Fri, 24 Feb 2017 07:24:17 +0000 (00:24 -0700)
committerTom Tromey <tom@tromey.com>
Sat, 25 Feb 2017 03:33:41 +0000 (20:33 -0700)
* lisp/progmodes/js.el (js--indent-in-array-comp): Wrap forward-sexp
call in condition-case.
* test/lisp/progmodes/js-tests.el (js-mode-indentation-error): New
test.

lisp/progmodes/js.el
test/lisp/progmodes/js-tests.el

index 6e313dc51b7b3de58a28dcbade6e87b37bad8982..65325a8ffad896b037f2c957cc825b2b0fe19e1c 100644 (file)
@@ -1986,11 +1986,16 @@ In particular, return the buffer position of the first `for' kwd."
         (js--forward-syntactic-ws)
         (if (looking-at "[[{]")
             (let (forward-sexp-function) ; Use Lisp version.
-              (forward-sexp)             ; Skip destructuring form.
-              (js--forward-syntactic-ws)
-              (if (and (/= (char-after) ?,) ; Regular array.
-                       (looking-at "for"))
-                  (match-beginning 0)))
+              (condition-case nil
+                  (progn
+                    (forward-sexp)       ; Skip destructuring form.
+                    (js--forward-syntactic-ws)
+                    (if (and (/= (char-after) ?,) ; Regular array.
+                             (looking-at "for"))
+                        (match-beginning 0)))
+                (scan-error
+                 ;; Nothing to do here.
+                 nil)))
           ;; To skip arbitrary expressions we need the parser,
           ;; so we'll just guess at it.
           (if (and (> end (point)) ; Not empty literal.
index 99f5898525b3880356ff628602647ecdec5c8c80..07e659af605d594a429955e83233483ea37a12c1 100644 (file)
@@ -118,6 +118,16 @@ if (!/[ (:,='\"]/.test(value)) {
       ;; implementation not recognizing the comment example.
       (should-not (syntax-ppss-context (syntax-ppss))))))
 
+(ert-deftest js-mode-indentation-error ()
+  (with-temp-buffer
+    (js-mode)
+    ;; The bug previously was that requesting re-indentation on the
+    ;; "{" line here threw an exception.
+    (insert "const TESTS = [\n{")
+    (js-indent-line)
+    ;; Any success is ok here.
+    (should t)))
+
 (provide 'js-tests)
 
 ;;; js-tests.el ends here