aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2011-03-03 00:10:52 -0800
committerGlenn Morris2011-03-03 00:10:52 -0800
commit06083aa12dafb69752c0f1a0d355877dbd32a81f (patch)
treebc891d8d46b615ae0cbd7f39186f2fd5622b5867 /lisp
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 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/files.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d933a2ea696..c785a66fc52 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-03-03 Glenn Morris <rgm@gnu.org>
2
3 * files.el (file-truename): Doc fix. (Bug#2341)
4
12011-03-03 Bob Rogers <rogers-emacs@rgrjr.dyndns.org> 52011-03-03 Bob Rogers <rogers-emacs@rgrjr.dyndns.org>
2 6
3 * vc/vc-dir.el (vc-dir-mode-map): Bind vc-dir-find-file to e. (Bug#7349) 7 * vc/vc-dir.el (vc-dir-mode-map): Bind vc-dir-find-file to e. (Bug#7349)
diff --git a/lisp/files.el b/lisp/files.el
index 8849e264151..a8f937233de 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -983,7 +983,8 @@ accessible."
983 nil))) 983 nil)))
984 984
985(defun file-truename (filename &optional counter prev-dirs) 985(defun file-truename (filename &optional counter prev-dirs)
986 "Return the truename of FILENAME, which should be absolute. 986 "Return the truename of FILENAME.
987If FILENAME is not absolute, first expands it against `default-directory'.
987The truename of a file name is found by chasing symbolic links 988The truename of a file name is found by chasing symbolic links
988both at the level of the file and at the level of the directories 989both at the level of the file and at the level of the directories
989containing it, until no links are left at any level. 990containing it, until no links are left at any level.