summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-03-16 03:01:46 +0000
committerKarl Heuer <kwzh@gnu.org>1994-03-16 03:01:46 +0000
commit36712b0a1be6d9c50172f178f0728b77b567b77a (patch)
tree6638ccab85848d3da1dcd1a7213226c2acc1d5d5 /src
parent7fe78b07bcf38fd80159a3e9490294dd0c08387b (diff)
downloademacs-36712b0a1be6d9c50172f178f0728b77b567b77a.tar.gz
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
in previous change.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 3929cbd45b4..371d44050e9 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -1715,8 +1715,8 @@ A prefix arg makes KEEP-TIME non-nil.")
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 @@ This is what happens in interactive use with M-x.")
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 @@ This is what happens in interactive use with M-x.")
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 @@ This happens for interactive use with M-x.")
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)