diff options
| -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. |