Function: tramp-warning

tramp-warning is a byte-compiled function defined in tramp-message.el.gz.

Signature

(tramp-warning VEC-OR-PROC FMT-STRING &rest ARGUMENTS)

Documentation

Show a warning.

VEC-OR-PROC identifies the connection to use, remaining arguments passed to tramp-message.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-message.el.gz
(defsubst tramp-warning (vec-or-proc fmt-string &rest arguments)
  "Show a warning.
VEC-OR-PROC identifies the connection to use, remaining arguments passed
to `tramp-message'."
  (declare (indent 1) (tramp-suppress-trace t))
  (let (signal-hook-function)
    (apply 'tramp-message vec-or-proc 2 fmt-string arguments)
    (apply 'lwarn 'tramp :warning fmt-string arguments)))