Function: Buffer-menu-backup-unmark

Buffer-menu-backup-unmark is an interactive and byte-compiled function defined in buff-menu.el.gz.

Signature

(Buffer-menu-backup-unmark)

Documentation

Move up and cancel all requested operations on buffer on line above.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/buff-menu.el.gz
(defun Buffer-menu-backup-unmark ()
  "Move up and cancel all requested operations on buffer on line above."
  (interactive nil Buffer-menu-mode)
  (forward-line -1)
  (while (and (not (tabulated-list-get-id)) (not (bobp)))
    (forward-line -1))
  (unless (bobp)
    (Buffer-menu--unmark)))