Function: log-view-unmark-entry

log-view-unmark-entry is an interactive and byte-compiled function defined in log-view.el.gz.

Signature

(log-view-unmark-entry ARG &optional BEG END)

Documentation

Unmark the log entry at point.

If the region is active in Transient Mark mode, unmark all entries. When called with a prefix argument, unmark that many log entries. When called from Lisp, mark ARG entries or all entries lying between BEG and END. If BEG and END are supplied, ARG is ignored.

See log-view-mark-entry.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-view.el.gz
(defun log-view-unmark-entry (arg &optional beg end)
  "Unmark the log entry at point.
If the region is active in Transient Mark mode, unmark all entries.
When called with a prefix argument, unmark that many log entries.
When called from Lisp, mark ARG entries or all entries lying between BEG
and END.  If BEG and END are supplied, ARG is ignored.

See `log-view-mark-entry'."
  (interactive "p\nR")
  (log-view--mark-unmark #'log-view--unmark-entry arg beg end))