diff options
Diffstat (limited to 'lisp/progmodes/js.el')
-rw-r--r-- | lisp/progmodes/js.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index 532739daae1..f1ec5ceea56 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -1838,7 +1838,7 @@ This performs fontification according to `js--class-styles'." (save-excursion (backward-char) (not (looking-at "[/*]/\\|=>"))) (js--looking-at-operator-p) (and (progn (backward-char) - (not (looking-at "+\\+\\|--\\|/[/*]")))))))))) + (not (looking-at "\\+\\+\\|--\\|/[/*]")))))))))) (defun js--skip-term-backward () "Skip a term before point; return t if a term was skipped." |