aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorStefan Monnier2005-03-12 01:37:51 +0000
committerStefan Monnier2005-03-12 01:37:51 +0000
commitdac24db4045326a3237ec76130fda7579f16201b (patch)
treeb00fbd39460479cf399a000a9a81c78c8fbda9ae /src/fileio.c
parente0402468ef01235b33ea962645f4e785e4d9c49a (diff)
downloademacs-dac24db4045326a3237ec76130fda7579f16201b.tar.gz
emacs-dac24db4045326a3237ec76130fda7579f16201b.zip
(Fmake_symbolic_link): Fix last change.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 879c3847558..db1ea660d97 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -1,6 +1,6 @@
1/* File IO for GNU Emacs. 1/* File IO for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, 2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. 3 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -2851,7 +2851,7 @@ This happens for interactive use with M-x. */)
2851 filename = Fexpand_file_name (filename, Qnil); 2851 filename = Fexpand_file_name (filename, Qnil);
2852 2852
2853 if (!NILP (Ffile_directory_p (linkname))) 2853 if (!NILP (Ffile_directory_p (linkname)))
2854 linkname = Fexpand_file_name (Ffile_name_nondirectory (file), linkname); 2854 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2855 else 2855 else
2856 linkname = Fexpand_file_name (linkname, Qnil); 2856 linkname = Fexpand_file_name (linkname, Qnil);
2857 2857