aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/files.el8
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8a911501f0f..5169fde1a88 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12014-02-08 Lars Ingebrigtsen <larsi@gnus.org> 12014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2 2
3 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
4
3 * isearch.el (isearch-hide-immediately): Doc clarification 5 * isearch.el (isearch-hide-immediately): Doc clarification
4 (bug#14723). 6 (bug#14723).
5 7
diff --git a/lisp/files.el b/lisp/files.el
index a8b2a204094..3697467b3bd 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -159,9 +159,11 @@ under another name, you get the existing buffer instead of a new buffer."
159 :group 'find-file) 159 :group 'find-file)
160 160
161(defcustom find-file-visit-truename nil 161(defcustom find-file-visit-truename nil
162 "Non-nil means visit a file under its truename. 162 "Non-nil means visiting a file uses its truename as the visited-file name.
163The truename of a file is found by chasing all links 163That is, the buffer visiting the file has the truename as the
164both at the file level and at the levels of the containing directories." 164value of `buffer-file-name'. The truename of a file is found by
165chasing all links both at the file level and at the levels of the
166containing directories."
165 :type 'boolean 167 :type 'boolean
166 :group 'find-file) 168 :group 'find-file)
167(put 'find-file-visit-truename 'safe-local-variable 'booleanp) 169(put 'find-file-visit-truename 'safe-local-variable 'booleanp)