Function: byte-compile-warn-x

byte-compile-warn-x is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-warn-x ARG FORMAT &rest ARGS)

Documentation

Issue a byte compiler warning.

ARG is the source element (likely a symbol with position) central to
  the warning, intended to supply source position information.
FORMAT and ARGS are as in byte-compile-warn.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-warn-x (arg format &rest args)
  "Issue a byte compiler warning.
ARG is the source element (likely a symbol with position) central to
  the warning, intended to supply source position information.
FORMAT and ARGS are as in `byte-compile-warn'."
  (let ((byte-compile-form-stack (cons arg byte-compile-form-stack)))
    (apply #'byte-compile-warn format args)))