aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2011-03-03 00:10:52 -0800
committerGlenn Morris2011-03-03 00:10:52 -0800
commit06083aa12dafb69752c0f1a0d355877dbd32a81f (patch)
treebc891d8d46b615ae0cbd7f39186f2fd5622b5867 /doc
parentb612ffc94de61b0fb50818de16fdb26d61294981 (diff)
downloademacs-06083aa12dafb69752c0f1a0d355877dbd32a81f.tar.gz
emacs-06083aa12dafb69752c0f1a0d355877dbd32a81f.zip
file-truename doc fix for bug#2341.
* lisp/files.el (file-truename): Doc fix. * doc/lispref/files.texi (Truenames): Minor clarification.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/files.texi3
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 1a980f14f3d..25f9225944d 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12011-03-03 Glenn Morris <rgm@gnu.org>
2
3 * files.texi (Truenames): Minor clarification. (Bug#2341)
4
12011-03-01 Glenn Morris <rgm@gnu.org> 52011-03-01 Glenn Morris <rgm@gnu.org>
2 6
3 * variables.texi (Directory Local Variables): 7 * variables.texi (Directory Local Variables):
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 3697f18badd..e3bdebd28a1 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -1041,7 +1041,8 @@ because they eliminate symbolic links as a cause of name variation.
1041 1041
1042@defun file-truename filename 1042@defun file-truename filename
1043The function @code{file-truename} returns the truename of the file 1043The function @code{file-truename} returns the truename of the file
1044@var{filename}. The argument must be an absolute file name. 1044@var{filename}. If the argument is not an absolute file name,
1045this function first expands it against @code{default-directory}.
1045 1046
1046This function does not expand environment variables. Only 1047This function does not expand environment variables. Only
1047@code{substitute-in-file-name} does that. @xref{Definition of 1048@code{substitute-in-file-name} does that. @xref{Definition of