diff options
Diffstat (limited to 'lisp/progmodes/js.el')
-rw-r--r-- | lisp/progmodes/js.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index c220353e9b7..bae9e52bf0f 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -1788,6 +1788,8 @@ This performs fontification according to `js--class-styles'." (and (looking-at js--indent-operator-re) (or (not (eq (char-after) ?:)) (save-excursion + (js--backward-syntactic-ws) + (when (= (char-before) ?\)) (backward-list)) (and (js--re-search-backward "[?:{]\\|\\_<case\\_>" nil t) (eq (char-after) ??)))) (not (and |