2010-01-28 Chong Yidong <cyd@stupidchicken.com>
+ * fileio.c (Frename_file): Fix last change (Bug#5487).
+
* m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
* m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
NILP (ok_if_already_exists) ? Qnil : Qt);
else
#endif
- if (Ffile_directory_p (file))
+ if (!NILP (Ffile_directory_p (file)))
call4 (Qcopy_directory, file, newname, Qt, Qnil);
else
/* We have already prompted if it was an integer, so don't
count = SPECPDL_INDEX ();
specbind (Qdelete_by_moving_to_trash, Qnil);
- if (Ffile_directory_p (file))
+ if (!NILP (Ffile_directory_p (file)))
call2 (Qdelete_directory, file, Qt);
else
Fdelete_file (file);