diff options
| author | Stefan Monnier | 2012-10-25 09:00:52 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-10-25 09:00:52 -0400 |
| commit | aaabfc8b2744aabe00b9fc97eaca59940b5afdeb (patch) | |
| tree | eb4948029b43ff1fc949a312def5209d3bb5dc4f /lisp | |
| parent | 414a8595f0b5b95bd89547a59b57a6effb757491 (diff) | |
| download | emacs-aaabfc8b2744aabe00b9fc97eaca59940b5afdeb.tar.gz emacs-aaabfc8b2744aabe00b9fc97eaca59940b5afdeb.zip | |
* lisp/dired.el (dired-get-marked-files): Allow ! on . and ...
Fixes: debbugs:12725
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/dired.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 71b3e3029b3..ea75d3774a1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725). | ||
| 4 | |||
| 3 | * minibuffer.el (minibuffer-force-complete): Fix thinko. | 5 | * minibuffer.el (minibuffer-force-complete): Fix thinko. |
| 4 | 6 | ||
| 5 | * net/ldap.el (ldap-search-internal): The official ldif format starts | 7 | * 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." | |||
| 620 | (let* ((all-of-them | 620 | (let* ((all-of-them |
| 621 | (save-excursion | 621 | (save-excursion |
| 622 | (dired-map-over-marks | 622 | (dired-map-over-marks |
| 623 | (dired-get-filename localp) | 623 | (dired-get-filename localp 'no-error-if-not-filep) |
| 624 | arg nil distinguish-one-marked))) | 624 | arg nil distinguish-one-marked))) |
| 625 | result) | 625 | result) |
| 626 | (if (not filter) | 626 | (if (not filter) |