Function: ert--results-font-lock-function

ert--results-font-lock-function is a byte-compiled function defined in ert.el.gz.

Signature

(ert--results-font-lock-function ENABLEDP)

Documentation

Redraw the ERT results buffer after font-lock-mode(var)/font-lock-mode(fun) was switched on or off.

ENABLEDP is true if font-lock-mode(var)/font-lock-mode(fun) is switched on, false otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert--results-font-lock-function (enabledp)
  "Redraw the ERT results buffer after `font-lock-mode' was switched on or off.

ENABLEDP is true if `font-lock-mode' is switched on, false
otherwise."
  (ert--results-update-ewoc-hf ert--results-ewoc ert--results-stats)
  (ewoc-refresh ert--results-ewoc)
  (font-lock-default-function enabledp))