Function: vc-dispatcher--explicit-marks-p

vc-dispatcher--explicit-marks-p is a byte-compiled function defined in vc-dispatcher.el.gz.

Signature

(vc-dispatcher--explicit-marks-p)

Documentation

Are any files in the directory browser explicitly marked?

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-dispatcher.el.gz
(defun vc-dispatcher--explicit-marks-p ()
  "Are any files in the directory browser explicitly marked?"
  (or (and (derived-mode-p 'vc-dir-mode)
           (vc-dir-marked-files))
      (and (derived-mode-p 'dired-mode)
           (length> (dired-get-marked-files nil nil nil t) 1))))