Function: WoMan-warn-ignored
WoMan-warn-ignored is a byte-compiled function defined in woman.el.gz.
Signature
(WoMan-warn-ignored REQUEST IGNORED)
Documentation
Log a warning message about ignored directive REQUEST.
IGNORED is a string appended to the log message.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
;; request is not used dynamically by any callees.
(defun WoMan-warn-ignored (request ignored)
"Log a warning message about ignored directive REQUEST.
IGNORED is a string appended to the log message."
(let ((tail
(buffer-substring (point)
(line-end-position))))
(if (and (> (length tail) 0)
(/= (string-to-char tail) ?\s))
(setq tail (concat " " tail)))
(WoMan-log-1
(concat "** " request tail " request " ignored))))