Function: cvs-mode-toggle-mark

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

Signature

(cvs-mode-toggle-mark E)

Documentation

Toggle the mark of the entry at point.

Key Bindings

Aliases

cvs-mouse-toggle-mark

Source Code

;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun cvs-mode-toggle-mark (e)
  "Toggle the mark of the entry at point."
  (interactive (list last-input-event))
  (save-excursion
    (posn-set-point (event-end e))
    (cvs-mode-mark 'toggle)))