diff options
| author | Karl Heuer | 1995-04-12 03:09:44 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-04-12 03:09:44 +0000 |
| commit | 723ddb1f818ffaa7aa2f65cf4a65d2ea4a013c1f (patch) | |
| tree | 3c5293738339cbe650d5460e25514acc691ea8b0 | |
| parent | a40dbafc08177ef0eaf623e830e374fc3e2749cf (diff) | |
| download | emacs-723ddb1f818ffaa7aa2f65cf4a65d2ea4a013c1f.tar.gz emacs-723ddb1f818ffaa7aa2f65cf4a65d2ea4a013c1f.zip | |
(dired-chmod-program): Defined.
| -rw-r--r-- | lisp/dired.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 7c8e65a23d9..f322422206d 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -51,6 +51,11 @@ may contain even `F', `b', `i' and `s'. See also the variable | |||
| 51 | "chown" "/etc/chown") | 51 | "chown" "/etc/chown") |
| 52 | "Name of chown command (usually `chown' or `/etc/chown').") | 52 | "Name of chown command (usually `chown' or `/etc/chown').") |
| 53 | 53 | ||
| 54 | (defvar dired-chmod-program | ||
| 55 | (if (eq system-type 'windows-nt) | ||
| 56 | "chmode" "chmod") | ||
| 57 | "Name of chmod command (usually `chmod' or `chmode').") | ||
| 58 | |||
| 54 | ;;;###autoload | 59 | ;;;###autoload |
| 55 | (defvar dired-ls-F-marks-symlinks nil | 60 | (defvar dired-ls-F-marks-symlinks nil |
| 56 | "*Informs dired about how `ls -lF' marks symbolic links. | 61 | "*Informs dired about how `ls -lF' marks symbolic links. |