Variable: vc-sccs-diff-switches

vc-sccs-diff-switches is a customizable variable defined in vc-sccs.el.gz.

Value

nil

Documentation

String or list of strings specifying switches for SCCS diff under VC.

If nil, use the value of vc-diff-switches. If t, use no switches.

This variable was added, or its default value changed, in Emacs 21.1.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-sccs.el.gz
(defcustom vc-sccs-diff-switches nil
  "String or list of strings specifying switches for SCCS diff under VC.
If nil, use the value of `vc-diff-switches'.  If t, use no switches."
  :type '(choice (const :tag "Unspecified" nil)
		 (const :tag "None" t)
		 (string :tag "Argument String")
		 (repeat :tag "Argument List" :value ("") string))
  :version "21.1")