Variable: byte-compile-log-warning-function
byte-compile-log-warning-function is a variable defined in
bytecomp.el.gz.
Value
byte-compile--log-warning-for-byte-compile
Documentation
Function called when encountering a warning or error.
Called with arguments (STRING POSITION FILL LEVEL). STRING is a
message describing the problem. POSITION is a buffer position
where the problem was detected. FILL is a prefix as in
warning-fill-prefix. LEVEL is the level of the
problem (:warning or :error). FILL and LEVEL may be nil.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defvar byte-compile-log-warning-function
#'byte-compile--log-warning-for-byte-compile
"Function called when encountering a warning or error.
Called with arguments (STRING POSITION FILL LEVEL). STRING is a
message describing the problem. POSITION is a buffer position
where the problem was detected. FILL is a prefix as in
`warning-fill-prefix'. LEVEL is the level of the
problem (`:warning' or `:error'). FILL and LEVEL may be nil.")