Function: follow-debug-message

follow-debug-message is a byte-compiled function defined in follow.el.gz.

Signature

(follow-debug-message &rest ARGS)

Documentation

Like message, but only active when follow-debug is non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/follow.el.gz
;;; Debug messages

;; This inline function must be as small as possible!
;; Maybe we should define a macro that expands to nil if
;; the variable is not set.

(defsubst follow-debug-message (&rest args)
  "Like `message', but only active when `follow-debug' is non-nil."
  (if (and (boundp 'follow-debug) follow-debug)
      (apply #'message args)))