diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1998-04-24 00:03:56 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1998-04-24 00:03:56 +0000 |
commit | 912aace821c8fe9d4a0af95540c29ba842011e4a (patch) | |
tree | 88a3bc7505eff3af2beaa638467156524bee0c49 /lisp/dired.el | |
parent | 80874ef71c66f29c6d5417575b76ece3c9d8caf6 (diff) | |
download | emacs-912aace821c8fe9d4a0af95540c29ba842011e4a.tar.gz |
(dired-chmod-program) [windows-nt]: Use chmod.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index a28865c05fe..c8f6c6de60e 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -67,10 +67,8 @@ may contain even `F', `b', `i' and `s'. See also the variable "/etc/chown")) "Name of chown command (usually `chown' or `/etc/chown').") -(defvar dired-chmod-program - (if (eq system-type 'windows-nt) - "chmode" "chmod") - "Name of chmod command (usually `chmod' or `chmode').") +(defvar dired-chmod-program "chmod" + "Name of chmod command (usually `chmod').") ;;;###autoload (defcustom dired-ls-F-marks-symlinks nil |