aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-03-27 02:37:57 +0000
committerRichard M. Stallman1996-03-27 02:37:57 +0000
commitaaef4a1cecda927730349489ff39493bbe875690 (patch)
tree4353353a90972e7c0f0e2689982e486f65db938e
parentc573ae8ec0116fe87f15e77e7f84ba39aaafee8c (diff)
downloademacs-aaef4a1cecda927730349489ff39493bbe875690.tar.gz
emacs-aaef4a1cecda927730349489ff39493bbe875690.zip
(dired-chown-program): Recognize lignux.
-rw-r--r--lisp/dired.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index 95938f9ffdc..18f865551a6 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -48,7 +48,7 @@ may contain even `F', `b', `i' and `s'. See also the variable
48 48
49;;;###autoload 49;;;###autoload
50(defvar dired-chown-program 50(defvar dired-chown-program
51 (if (memq system-type '(hpux dgux usg-unix-v irix linux)) 51 (if (memq system-type '(hpux dgux usg-unix-v irix linux lignux))
52 "chown" "/etc/chown") 52 "chown" "/etc/chown")
53 "Name of chown command (usually `chown' or `/etc/chown').") 53 "Name of chown command (usually `chown' or `/etc/chown').")
54 54