Function: byte-compile-log-warning
byte-compile-log-warning is a byte-compiled function defined in
bytecomp.el.gz.
Signature
(byte-compile-log-warning STRING &optional FILL LEVEL)
Documentation
Log a byte-compilation warning.
STRING, FILL and LEVEL are as described in
byte-compile-log-warning-function, which see.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-log-warning (string &optional fill level)
"Log a byte-compilation warning.
STRING, FILL and LEVEL are as described in
`byte-compile-log-warning-function', which see."
(funcall byte-compile-log-warning-function
string
(or (byte-compile--warning-source-offset)
(point))
fill
level))