aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2004-05-10 11:55:18 +0000
committerAndreas Schwab2004-05-10 11:55:18 +0000
commitf59abab94a399154a7c6a22541237e09efeb8c61 (patch)
treee2fdf7d0fe74123b7abcc0444c56d3e19530015c /src
parent453d8ee93fdc42edd9a3707dd720e78600885e9b (diff)
downloademacs-f59abab94a399154a7c6a22541237e09efeb8c61.tar.gz
emacs-f59abab94a399154a7c6a22541237e09efeb8c61.zip
(Frename_file): Remove extra argument in call to
Fmake_symbolic_link.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 7d20697b875..8696946eb8a 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -1,5 +1,5 @@
1/* File IO for GNU Emacs. 1/* File IO for GNU Emacs.
2 Copyright (C) 1985,86,87,88,93,94,95,96,97,98,99,2000,01,2003 2 Copyright (C) 1985,86,87,88,93,94,95,96,97,98,99,2000,01,03,2004
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -2729,7 +2729,7 @@ This is what happens in interactive use with M-x. */)
2729 symlink_target = Ffile_symlink_p (file); 2729 symlink_target = Ffile_symlink_p (file);
2730 if (! NILP (symlink_target)) 2730 if (! NILP (symlink_target))
2731 Fmake_symbolic_link (symlink_target, newname, 2731 Fmake_symbolic_link (symlink_target, newname,
2732 NILP (ok_if_already_exists) ? Qnil : Qt, Qt); 2732 NILP (ok_if_already_exists) ? Qnil : Qt);
2733 else 2733 else
2734#endif 2734#endif
2735 Fcopy_file (file, newname, 2735 Fcopy_file (file, newname,