Remove just input mark

* lisp/ibuffer.el (ibuffer-unmark-all): When MARK is not ?\r remove
just MARK.
This commit is contained in:
Tino Calancha 2016-07-08 11:22:34 +09:00
parent 9bf31d1d3f
commit 0e6fa2ddf7

View file

@ -1345,6 +1345,12 @@ With optional ARG, make read-only only if ARG is not negative."
(lambda (_buf _mark)
(ibuffer-set-mark-1 ?\s)
t)))
((not (char-equal mark ?\r))
(ibuffer-map-lines
(lambda (_buf _mark)
(when (char-equal _mark mark)
(ibuffer-set-mark-1 ?\s))
t)))
(t
(ibuffer-map-lines
(lambda (_buf mark)