rumcii / emacs-nav

Automatically exported from code.google.com/p/emacs-nav
GNU General Public License v3.0
0 stars 0 forks source link

Nav should use delete-directory instead of a system call to rm or rmdir #88

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
This is fixed in changes 197, 198.

Original comment by issac.tr...@gmail.com on 20 Feb 2011 at 8:36