diff options
| author | Richard M. Stallman | 1997-01-02 02:30:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-01-02 02:30:23 +0000 |
| commit | 05a455e217bb596a88470a6c637a226e4a149383 (patch) | |
| tree | ffd4aa287d7ca25baf8a607abecf4a30599b2550 /lisp | |
| parent | 6d34c59ffb4b6ebaef4a1489aac7d179038410ba (diff) | |
| download | emacs-05a455e217bb596a88470a6c637a226e4a149383.tar.gz emacs-05a455e217bb596a88470a6c637a226e4a149383.zip | |
(dired-do-chxxx): Use -- only on GNU systems.
Diffstat (limited to 'lisp')
| -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'." | |||
| 98 | (setq failures | 98 | (setq failures |
| 99 | (dired-bunch-files 10000 | 99 | (dired-bunch-files 10000 |
| 100 | (function dired-check-process) | 100 | (function dired-check-process) |
| 101 | (list operation program new-attribute "--") | 101 | (append |
| 102 | (list operation program new-attribute) | ||
| 103 | (if (string-match "gnu" system-configuration) | ||
| 104 | '("--") nil)) | ||
| 102 | files)) | 105 | files)) |
| 103 | (dired-do-redisplay arg);; moves point if ARG is an integer | 106 | (dired-do-redisplay arg);; moves point if ARG is an integer |
| 104 | (if failures | 107 | (if failures |