diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-12-04 19:13:50 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-12-04 19:13:50 +0200 |
commit | 82ddcf37ec6fa09887114648d493df9ee81ceaf7 (patch) | |
tree | 7577eaf15db6ac79cc0d56975d84971766192ca0 /doc/lispref/files.texi | |
parent | 89068516b3e1c5c77ea843d8a5bec52274c0fbe5 (diff) | |
download | emacs-82ddcf37ec6fa09887114648d493df9ee81ceaf7.tar.gz emacs-82ddcf37ec6fa09887114648d493df9ee81ceaf7.tar.bz2 emacs-82ddcf37ec6fa09887114648d493df9ee81ceaf7.zip |
; * doc/lispref/files.texi (Changing Files): Fix last change.
Diffstat (limited to 'doc/lispref/files.texi')
-rw-r--r-- | doc/lispref/files.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index 69f8ebbfab7..13fe8d97182 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi @@ -1865,10 +1865,10 @@ multiple names, it continues to exist under the other names. If @var{filename} is a symbolic link, @code{delete-file} deletes only the symbolic link and not its target. -A suitable kind of @code{file-error} error is signaled is not -deletable. (On GNU and other POSIX-like systems, a file is deletable -if its directory is writable.) No error is signaled if the file does -not exist. +The command signals a suitable kind of @code{file-error} error if +@var{filename} cannot be deleted. (On GNU and other POSIX-like +systems, a file can be deleted if its directory is writable.) If the +file does not exist, this command will not signal any error. If the optional argument @var{trash} is non-@code{nil} and the variable @code{delete-by-moving-to-trash} is non-@code{nil}, this |