Function: flymake-error
flymake-error is a byte-compiled function defined in flymake.el.gz.
Signature
(flymake-error TEXT &rest ARGS)
Documentation
Format TEXT with ARGS and signal an error for Flymake.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(defun flymake-error (text &rest args)
"Format TEXT with ARGS and signal an error for Flymake."
(let ((msg (apply #'format-message text args)))
(flymake-log :error "%s" msg)
(error (concat "[Flymake] " msg))))