From fe905647b53d00b1bd36e4f7ac756135635bb49a Mon Sep 17 00:00:00 2001 From: Tino Calancha Date: Wed, 7 Dec 2016 21:27:31 +0900 Subject: [PATCH] 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). --- lisp/dired.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.11.4.GIT