Function: bs-unmark-previous
bs-unmark-previous is an interactive and byte-compiled function
defined in bs.el.gz.
Signature
(bs-unmark-previous COUNT)
Documentation
Unmark previous COUNT buffers.
Move point vertically up COUNT lines. When called interactively a numeric prefix argument sets COUNT.
Probably introduced at or before Emacs version 26.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-unmark-previous (count)
"Unmark previous COUNT buffers.
Move point vertically up COUNT lines.
When called interactively a numeric prefix argument sets COUNT."
(interactive "p")
(forward-line (- count))
(save-excursion (bs-unmark-current count)))