# HG changeset patch # User Karl Heuer # Date 763786906 0 # Node ID 51a014b7c6565c5aa84b43d54bfcbb7bc65fbf6b # Parent 881009b034b3d6f540c23e060377f7bbba6213cf (Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo in previous change. diff -r 881009b034b3 -r 51a014b7c656 src/fileio.c --- a/src/fileio.c Tue Mar 15 23:36:48 1994 +0000 +++ b/src/fileio.c Wed Mar 16 03:01:46 1994 +0000 @@ -1715,8 +1715,8 @@ if (NILP (handler)) handler = Ffind_file_name_handler (newname); if (!NILP (handler)) - return RETURN_UNGCPRO (call5 (handler, Qcopy_file, filename, newname, - ok_if_already_exists, keep_date)); + RETURN_UNGCPRO (call5 (handler, Qcopy_file, filename, newname, + ok_if_already_exists, keep_date)); if (NILP (ok_if_already_exists) || XTYPE (ok_if_already_exists) == Lisp_Int) @@ -1890,8 +1890,8 @@ if (NILP (handler)) handler = Ffind_file_name_handler (newname); if (!NILP (handler)) - return RETURN_UNGCPRO (call4 (handler, Qrename_file, - filename, newname, ok_if_already_exists)); + RETURN_UNGCPRO (call4 (handler, Qrename_file, + filename, newname, ok_if_already_exists)); if (NILP (ok_if_already_exists) || XTYPE (ok_if_already_exists) == Lisp_Int) @@ -1953,8 +1953,8 @@ call the corresponding file handler. */ handler = Ffind_file_name_handler (filename); if (!NILP (handler)) - return RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename, - newname, ok_if_already_exists)); + RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename, + newname, ok_if_already_exists)); if (NILP (ok_if_already_exists) || XTYPE (ok_if_already_exists) == Lisp_Int) @@ -2007,8 +2007,8 @@ call the corresponding file handler. */ handler = Ffind_file_name_handler (filename); if (!NILP (handler)) - return RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, - linkname, ok_if_already_exists)); + RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, + linkname, ok_if_already_exists)); if (NILP (ok_if_already_exists) || XTYPE (ok_if_already_exists) == Lisp_Int)