Variable: cvs-invert-ignore-marks

cvs-invert-ignore-marks is a customizable variable defined in pcvs-defs.el.gz.

Value

("tag" "diff")

Documentation

List of cvs commands that invert the default ignore-mark behavior.

Commands in this set will use the opposite default from the one set in cvs-default-ignore-marks.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/pcvs-defs.el.gz
(defcustom cvs-invert-ignore-marks
  (let ((l ()))
    (unless (equal cvs-default-ignore-marks t)
      (push "diff" l))
    (when (and cvs-force-dir-tag (not cvs-default-ignore-marks))
      (push "tag" l))
    l)
  "List of cvs commands that invert the default ignore-mark behavior.
Commands in this set will use the opposite default from the one set
in `cvs-default-ignore-marks'."
  :type '(set (const "diff")
	      (const "tag")
	      (const "ignore")))