Function: WoMan-warn
WoMan-warn is a byte-compiled function defined in woman.el.gz.
Signature
(WoMan-warn FORMAT &rest ARGS)
Documentation
Log a warning message out of FORMAT control string and optional ARGS.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun WoMan-warn (format &rest args)
"Log a warning message out of FORMAT control string and optional ARGS."
(setq format (apply #'format-message format args))
(WoMan-log-1 (concat "** " format)))