branch: externals/js2-mode
commit eb3be7e894bc3412bb45f0d0e0c2a817e4b507e1
Author: Jonathan Ming <jming...@gmail.com>
Commit: Jonathan Ming <jming...@gmail.com>

    Fix misplaced paren
---
 js2-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/js2-mode.el b/js2-mode.el
index fae3b5f..3c043b8 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -10029,8 +10029,8 @@ FIXME: The latter option is unused?"
     (when (js2-match-token js2-NULLISH-COALESCING)
       (setq pn (js2-make-binary js2-NULLISH-COALESCING
                                 pn
-                                'js2-parse-nullish-coalescing-expr))
-      pn)))
+                                'js2-parse-nullish-coalescing-expr)))
+    pn))
 
 (defconst js2-parse-eq-ops
   (list js2-EQ js2-NE js2-SHEQ js2-SHNE))

Reply via email to