From: Stefan Monnier Date: Thu, 25 Oct 2012 13:00:52 +0000 (-0400) Subject: * lisp/dired.el (dired-get-marked-files): Allow ! on . and ... X-Git-Tag: emacs-24.2.90~209^2~72 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aaabfc8b2744aabe00b9fc97eaca59940b5afdeb;p=emacs.git * lisp/dired.el (dired-get-marked-files): Allow ! on . and ... Fixes: debbugs:12725 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 71b3e3029b3..ea75d3774a1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2012-10-25 Stefan Monnier + * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725). + * minibuffer.el (minibuffer-force-complete): Fix thinko. * net/ldap.el (ldap-search-internal): The official ldif format starts diff --git a/lisp/dired.el b/lisp/dired.el index 9094ce08f0a..fb2f7281130 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -620,7 +620,7 @@ Don't use that together with FILTER." (let* ((all-of-them (save-excursion (dired-map-over-marks - (dired-get-filename localp) + (dired-get-filename localp 'no-error-if-not-filep) arg nil distinguish-one-marked))) result) (if (not filter)