diff options
| author | Richard M. Stallman <rms@gnu.org> | 1997-01-02 02:30:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1997-01-02 02:30:23 +0000 |
| commit | 05a455e217bb596a88470a6c637a226e4a149383 (patch) | |
| tree | ffd4aa287d7ca25baf8a607abecf4a30599b2550 | |
| parent | 6d34c59ffb4b6ebaef4a1489aac7d179038410ba (diff) | |
| download | emacs-05a455e217bb596a88470a6c637a226e4a149383.tar.gz | |
(dired-do-chxxx): Use -- only on GNU systems.
| -rw-r--r-- | lisp/dired-aux.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index c8e37ea340a..86b897d6616 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -98,7 +98,10 @@ With prefix arg, prompt for argument SWITCHES which is options for `diff'." (setq failures (dired-bunch-files 10000 (function dired-check-process) - (list operation program new-attribute "--") + (append + (list operation program new-attribute) + (if (string-match "gnu" system-configuration) + '("--") nil)) files)) (dired-do-redisplay arg);; moves point if ARG is an integer (if failures |
