aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1997-01-02 02:30:23 +0000
committerRichard M. Stallman1997-01-02 02:30:23 +0000
commit05a455e217bb596a88470a6c637a226e4a149383 (patch)
treeffd4aa287d7ca25baf8a607abecf4a30599b2550 /lisp
parent6d34c59ffb4b6ebaef4a1489aac7d179038410ba (diff)
downloademacs-05a455e217bb596a88470a6c637a226e4a149383.tar.gz
emacs-05a455e217bb596a88470a6c637a226e4a149383.zip
(dired-do-chxxx): Use -- only on GNU systems.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/dired-aux.el5
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