Function: ibuffer-unmark-backward

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

Signature

(ibuffer-unmark-backward START END ARG)

Documentation

Unmark the buffers in the region, or previous ARG buffers.

If point is on a group name, this function operates on that group.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
(defun ibuffer-unmark-backward (start end arg)
  "Unmark the buffers in the region, or previous ARG buffers.
If point is on a group name, this function operates on that group."
  (interactive (ibuffer-get-region-and-prefix))
  (ibuffer-unmark-forward start end (- arg)))