diff options
author | Jens Schmidt <jschmidt4gnu@vodafonemail.de> | 2023-10-18 22:43:37 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-10-20 09:04:39 +0300 |
commit | b99d12c30c3abc05fd977b695b7beac12e9302f0 (patch) | |
tree | ac868f020e4f61f7a6312c3c80b06edc9d3fb2e2 /doc/lispref/files.texi | |
parent | 62920dcb0de440aac8e7d69ee33f27d5400d405e (diff) | |
download | emacs-b99d12c30c3abc05fd977b695b7beac12e9302f0.tar.gz emacs-b99d12c30c3abc05fd977b695b7beac12e9302f0.tar.bz2 emacs-b99d12c30c3abc05fd977b695b7beac12e9302f0.zip |
; Fix argument name for function `copy-file'
* doc/lispref/files.texi (Changing Files): Change name of last
argument of function `copy-file' from `preserve-extended-attributes'
to `preserve-permissions', as used in the function's description, its
doc string and the description below in the manual.
Diffstat (limited to 'doc/lispref/files.texi')
-rw-r--r-- | doc/lispref/files.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index f8781d4895b..6a8bd69b102 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi @@ -1797,7 +1797,7 @@ If @var{newname} exists, then it must be an empty directory if @var{oldname} is a directory and a non-directory otherwise. @end deffn -@deffn Command copy-file oldname newname &optional ok-if-already-exists time preserve-uid-gid preserve-extended-attributes +@deffn Command copy-file oldname newname &optional ok-if-already-exists time preserve-uid-gid preserve-permissions This command copies the file @var{oldname} to @var{newname}. An error is signaled if @var{oldname} is not a regular file. If @var{newname} names a directory, it copies @var{oldname} into that directory, |