Function: proced-unmark-backward

proced-unmark-backward is an interactive and byte-compiled function defined in proced.el.gz.

Signature

(proced-unmark-backward &optional COUNT)

Documentation

Unmark the previous (or COUNT previous) processes.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defun proced-unmark-backward (&optional count)
  "Unmark the previous (or COUNT previous) processes."
  ;; Analogous to `dired-unmark-backward',
  ;; but `ibuffer-unmark-backward' behaves different.
  (interactive "p" proced-mode)
  (proced-do-mark nil (- (or count 1))))