Function: cvs-mode-mark-matching-files

cvs-mode-mark-matching-files is an interactive and byte-compiled function defined in pcvs.el.gz.

Signature

(cvs-mode-mark-matching-files REGEX)

Documentation

Mark all files matching REGEX.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun-cvs-mode cvs-mode-mark-matching-files (regex)
  "Mark all files matching REGEX."
  (interactive "sMark files matching: ")
  (ewoc-map (lambda (cookie)
	      (when (and (not (eq (cvs-fileinfo->type cookie) 'DIRCHANGE))
			 (string-match regex (cvs-fileinfo->file cookie)))
		(setf (cvs-fileinfo->marked cookie) t)))
	    cvs-cookies))