From: Stefan Monnier Date: Fri, 21 Aug 2015 13:03:52 +0000 (-0400) Subject: * lisp/progmodes/js.el (js-mode): Don't eagerly syntax propertize. X-Git-Tag: emacs-25.0.90~1321^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9f31fb2a660a26ba510568fae102afc68db8f385;p=emacs.git * lisp/progmodes/js.el (js-mode): Don't eagerly syntax propertize. --- diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index 40a4a1080b5..98a22dd8441 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -3560,9 +3560,10 @@ If one hasn't been set, or if it's stale, prompt for a new one." ;; the buffer containing the problem, JIT-lock will apply the ;; correct syntax to the regular expression literal and the problem ;; will mysteriously disappear. - ;; FIXME: We should actually do this fontification lazily by adding + ;; FIXME: We should instead do this fontification lazily by adding ;; calls to syntax-propertize wherever it's really needed. - (syntax-propertize (point-max))) + ;;(syntax-propertize (point-max)) + ) ;;;###autoload (defalias 'javascript-mode 'js-mode)