* fileio.c (Fdelete_file): Change interative spec to use
authorJuri Linkov <juri@jurta.org>
Thu, 20 May 2010 23:08:52 +0000 (02:08 +0300)
committerJuri Linkov <juri@jurta.org>
Thu, 20 May 2010 23:08:52 +0000 (02:08 +0300)
`read-file-name' like in `find-file-read-args' where the default
value is `default-directory' instead of `buffer-file-name'.
http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html

src/ChangeLog
src/fileio.c

index b593f5f..13ab468 100644 (file)
@@ -1,3 +1,10 @@
+2010-05-20  Juri Linkov  <juri@jurta.org>
+
+       * fileio.c (Fdelete_file): Change interative spec to use
+       `read-file-name' like in `find-file-read-args' where the default
+       value is `default-directory' instead of `buffer-file-name'.
+       http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
+
 2010-05-20  Kevin Ryde  <user42@zip.com.au>
 
        * keyboard.c (Vlast_command, Vkeyboard_translate_table)
index 85685eb..de32bfe 100644 (file)
@@ -2194,7 +2194,10 @@ DEFUN ("delete-directory-internal", Fdelete_directory_internal,
   return Qnil;
 }
 
-DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2, "fDelete file: \nP",
+DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2,
+       "(list (read-file-name \"Delete file: \" nil default-directory \
+                (confirm-nonexistent-file-or-buffer))                 \
+              current-prefix-arg)",
        doc: /* Delete file named FILENAME.  If it is a symlink, remove the symlink.
 If file has multiple names, it continues to exist with the other names.