Explorar el Código

fix dired-get-file-info

pull/1/head
10sr hace 11 años
padre
commit
3e4f0fe522
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      emacs.el

+ 3
- 3
emacs.el Ver fichero

@@ -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)))))



Cargando…
Cancelar
Guardar