aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-10-21 19:30:34 +0000
committerRichard M. Stallman1992-10-21 19:30:34 +0000
commit194ff7c129d43be79d64fb9d280a923588374230 (patch)
tree0f814d5b7e296eb30bc8c7deab5c9ca13a177710
parented7ace63fc10db0b87975f635a44f0ad9e313468 (diff)
downloademacs-194ff7c129d43be79d64fb9d280a923588374230.tar.gz
emacs-194ff7c129d43be79d64fb9d280a923588374230.zip
(dired-chown-program): Treat silicon-graphics-unix like usg-unix-v.
-rw-r--r--lisp/dired.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index 55cb1f058df..0417a71e692 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -46,7 +46,8 @@ may contain even `F', `b', `i' and `s'.")
46 46
47;;;###autoload 47;;;###autoload
48(defvar dired-chown-program 48(defvar dired-chown-program
49 (if (memq system-type '(hpux dgux usg-unix-v)) "chown" "/etc/chown") 49 (if (memq system-type '(hpux dgux usg-unix-v silicon-graphics-unix))
50 "chown" "/etc/chown")
50 "Name of chown command (usully `chown' or `/etc/chown').") 51 "Name of chown command (usully `chown' or `/etc/chown').")
51 52
52;;;###autoload 53;;;###autoload