Variable: vc-command-messages

vc-command-messages is a customizable variable defined in vc-dispatcher.el.gz.

Value

nil

Documentation

If non-nil, display and log messages about running back-end commands.

If the value is log, messages about running VC back-end commands are logged in the *Messages* buffer, but not displayed.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-dispatcher.el.gz
(defcustom vc-command-messages nil
  "If non-nil, display and log messages about running back-end commands.
If the value is `log', messages about running VC back-end commands are
logged in the *Messages* buffer, but not displayed."
  :type '(choice (const :tag "No messages" nil)
                 (const :tag "Display and log messages" t)
                 (const :tag "Log messages, but don't display" log))
  :group 'vc)