Procházet zdrojové kódy

fix dired-get-file-info

pull/1/head
10sr před 11 roky
rodič
revize
3e4f0fe522
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      emacs.el

+ 3
- 3
emacs.el Zobrazit soubor

@@ -1248,12 +1248,12 @@ delete; o: select other; j, l: enlarge; h, k: shrink; q: quit."
(defun dired-get-file-info ()
"dired get file info"
(interactive)
(let ((f (dired-get-filename)))
(let ((f (shell-quote-argument (dired-get-filename t))))
(if (file-directory-p f)
(progn
(message "calculating du...")
(message "Calculating disk usage...")
(shell-command (concat "du -hsD "
(shell-quote-argument f))))
f)))
(shell-command (concat "file "
f)))))



Načítá se…
Zrušit
Uložit