From 4e959868b6fecd9399454a81877f151dfca218ac Mon Sep 17 00:00:00 2001 From: Jens Schmidt Date: Wed, 18 Oct 2023 22:43:37 +0200 Subject: [PATCH 1/2] ; 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 and doc string. (Bug#66546) --- doc/lispref/files.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index afedf776c86..dc66ea8bc9c 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi @@ -1803,7 +1803,7 @@ Changing Files @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, -- 2.30.2