Function: wisent-message
wisent-message is a byte-compiled function defined in wisent.el.gz.
Signature
(wisent-message STRING &rest ARGS)
Documentation
Print a one-line message if wisent-parse-verbose-flag is set.
Pass STRING and ARGS arguments to message.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/wisent/wisent.el.gz
(defsubst wisent-message (string &rest args)
"Print a one-line message if `wisent-parse-verbose-flag' is set.
Pass STRING and ARGS arguments to `message'."
(and wisent-parse-verbose-flag
(apply #'message string args)))