Mercurial > emacs
comparison lisp/dired-aux.el @ 48245:ae3c8e5ff8a9
(dired-show-file-type): Format filename with "%s" to escape any format-like
sequences it could contain.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 11 Nov 2002 11:44:05 +0000 |
parents | fa2278158755 |
children | 2442c14be9a2 |
comparison
equal
deleted
inserted
replaced
48244:b534f5704525 | 48245:ae3c8e5ff8a9 |
---|---|
2031 (if deref-symlinks | 2031 (if deref-symlinks |
2032 (call-process "file" nil t t "-L" "--" file) | 2032 (call-process "file" nil t t "-L" "--" file) |
2033 (call-process "file" nil t t "--" file)) | 2033 (call-process "file" nil t t "--" file)) |
2034 (when (bolp) | 2034 (when (bolp) |
2035 (backward-delete-char 1)) | 2035 (backward-delete-char 1)) |
2036 (message (buffer-string)))) | 2036 (message "%s" (buffer-string)))) |
2037 | 2037 |
2038 (provide 'dired-aux) | 2038 (provide 'dired-aux) |
2039 | 2039 |
2040 ;;; dired-aux.el ends here | 2040 ;;; dired-aux.el ends here |