From: Tino Calancha Date: Wed, 7 Dec 2016 12:27:31 +0000 (+0900) Subject: dired-unmark-backward: Unmark the region when is active X-Git-Tag: emacs-26.0.90~1188 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe905647b53d00b1bd36e4f7ac756135635bb49a;p=emacs.git dired-unmark-backward: Unmark the region when is active * lisp/dired.el (dired-unmark-backward): Call 'dired-unmark' with a non-nil second argument (Bug#24986). --- diff --git a/lisp/dired.el b/lisp/dired.el index daa6d776a99..a1eeb0b2524 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -3313,7 +3313,7 @@ is one line. If the region is active in Transient Mark mode, unmark all files in the active region." (interactive "p") - (dired-unmark (- arg))) + (dired-unmark (- arg) t)) (defun dired-toggle-marks () "Toggle marks: marked files become unmarked, and vice versa.