Function: cvs-mode-unmark-up
cvs-mode-unmark-up is an interactive and byte-compiled function
defined in pcvs.el.gz.
Signature
(cvs-mode-unmark-up)
Documentation
Unmark the file on the previous line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun-cvs-mode cvs-mode-unmark-up ()
"Unmark the file on the previous line."
(interactive)
(let ((tin (ewoc-goto-prev cvs-cookies 1)))
(when tin
(setf (cvs-fileinfo->marked (ewoc-data tin)) nil)
(ewoc-invalidate cvs-cookies tin)))
(cvs-move-to-goal-column))