diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-11-03 11:59:30 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-11-03 11:59:30 +0200 |
commit | e01e8a8f848600532bce76705339c96e19b3ae40 (patch) | |
tree | 8797f7602a617840e05edde53709bb9e2aee383c | |
parent | 1862df834c29197cdd339ee369c0ef21694db851 (diff) | |
download | emacs-e01e8a8f848600532bce76705339c96e19b3ae40.tar.gz emacs-e01e8a8f848600532bce76705339c96e19b3ae40.tar.bz2 emacs-e01e8a8f848600532bce76705339c96e19b3ae40.zip |
; * lisp/dired-aux.el (dired-show-file-type): Doc fix.
-rw-r--r-- | lisp/dired-aux.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index b62e94fa77a..e31951351b6 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -3282,9 +3282,9 @@ REGEXP should use constructs supported by your local `grep' command." ;;;###autoload (defun dired-show-file-type (file &optional deref-symlinks) "Print the type of FILE, according to the `file' command. -If you give a prefix to this command, and FILE is a symbolic -link, then the type of the file linked to by FILE is printed -instead." +If you give a prefix argument \\[universal-argument] to this command, and +FILE is a symbolic link, then the command will print the type +of the target of the link instead." (interactive (list (dired-get-filename t) current-prefix-arg)) (let (process-file-side-effects) (with-temp-buffer |