aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXue Fuqiao2013-06-12 09:12:59 +0800
committerXue Fuqiao2013-06-12 09:12:59 +0800
commitd177e21300d9ff79ac1a293e69104c6948bad361 (patch)
treeb077a447e9218cd5a6ed64898ab0efd2bdf3d6c6 /src
parentf56be016d5d2d550f98c83a9d4e61468c71738c2 (diff)
downloademacs-d177e21300d9ff79ac1a293e69104c6948bad361.tar.gz
emacs-d177e21300d9ff79ac1a293e69104c6948bad361.zip
* src/fileio.c (expand_file_name): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fileio.c5
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b178f1130e0..38eb460359c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-06-12 Xue Fuqiao <xfq.free@gmail.com>
2
3 * fileio.c (expand_file_name): Doc fix.
4
12013-06-11 Paul Eggert <eggert@cs.ucla.edu> 52013-06-11 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 Tickle glib by waiting for Emacs itself, not for process 0 (Bug#14569). 7 Tickle glib by waiting for Emacs itself, not for process 0 (Bug#14569).
diff --git a/src/fileio.c b/src/fileio.c
index 75e1f13a09b..ce5d4854fee 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -776,8 +776,9 @@ probably use `make-temp-file' instead, except in three circumstances:
776DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, 776DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
777 doc: /* Convert filename NAME to absolute, and canonicalize it. 777 doc: /* Convert filename NAME to absolute, and canonicalize it.
778Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative 778Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
779\(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing, 779\(does not start with slash or tilde); both the directory name and
780the current buffer's value of `default-directory' is used. 780a directory's file name are accepted. If DEFAULT-DIRECTORY is nil or
781missing, the current buffer's value of `default-directory' is used.
781NAME should be a string that is a valid file name for the underlying 782NAME should be a string that is a valid file name for the underlying
782filesystem. 783filesystem.
783File name components that are `.' are removed, and 784File name components that are `.' are removed, and