Wrap the font-lock-fontify-buffer call with with-no-warnings.

font-lock-fontify-buffer is for interactive use only in Emacs >= 24.5.
master
Fanael Linithien 12 years ago
parent 3a18183db3
commit ecacb319d3
  1. 2
      rainbow-delimiters.el

@ -572,7 +572,7 @@ Used by font-lock for dynamic highlighting."
(when font-lock-mode
(if (fboundp 'font-lock-flush)
(font-lock-flush)
(font-lock-fontify-buffer))))
(with-no-warnings (font-lock-fontify-buffer)))))
;;;###autoload
(defun rainbow-delimiters-mode-enable ()

Loading…
Cancel
Save