Currently Nav uses this code to delete directories:
(defun nav-make-remove-dir-command (dirname)
(if (nav-this-is-a-microsoft-os)
(format "rmdir /S /Q \"%s\"" dirname)
(format "rm -rf '%s'" dirname)))
It should use delete-directory instead because that will work wherever emacs
works, not just on Un*x and Windows.
Original issue reported on code.google.com by issac.tr...@gmail.com on 20 Feb 2011 at 1:48
Original issue reported on code.google.com by
issac.tr...@gmail.com
on 20 Feb 2011 at 1:48