aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorPaul Eggert2018-11-14 09:31:28 -0800
committerPaul Eggert2018-11-14 09:32:28 -0800
commit454f7923a7de9f65f55050dfab48eefc40d0ce29 (patch)
tree49b5bc42234e0accb94af1af8f81de5551de5f9b /doc/lispref
parentfb2514f3e29c140735e2ffccda4affffdb5b253d (diff)
downloademacs-454f7923a7de9f65f55050dfab48eefc40d0ce29.tar.gz
emacs-454f7923a7de9f65f55050dfab48eefc40d0ce29.zip
Document recent change to HOME handling
* doc/emacs/cmdargs.texi (General Variables): * doc/emacs/custom.texi (Find Init): * doc/lispref/files.texi (File Name Expansion): * etc/NEWS: Document behavior when HOME is a relative file name.
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/files.texi6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 5682919b645..b795864815d 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -2367,8 +2367,10 @@ start with @samp{~}.) Otherwise, the current buffer's value of
2367@end example 2367@end example
2368 2368
2369If the part of @var{filename} before the first slash is 2369If the part of @var{filename} before the first slash is
2370@samp{~}, it expands to the value of the @env{HOME} environment 2370@samp{~}, it expands to your home directory, which is typically
2371variable (usually your home directory). If the part before the first 2371specified by the value of the @env{HOME} environment variable
2372(@pxref{General Variables,,, emacs, The GNU Emacs Manual}).
2373If the part before the first
2372slash is @samp{~@var{user}} and if @var{user} is a valid login name, 2374slash is @samp{~@var{user}} and if @var{user} is a valid login name,
2373it expands to @var{user}'s home directory. 2375it expands to @var{user}'s home directory.
2374If you do not want this expansion for a relative @var{filename} that 2376If you do not want this expansion for a relative @var{filename} that