diff options
| author | Eli Zaretskii | 2018-02-09 15:32:48 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2018-02-09 15:32:48 +0200 |
| commit | 898a3e47846e78453e89f9f46673297e962dbd70 (patch) | |
| tree | 29b7c9f040f316a4c92126587550e7a4226ac95f | |
| parent | 8f7d7184996afcf91e9119bcc297448fcd740f3d (diff) | |
| download | emacs-898a3e47846e78453e89f9f46673297e962dbd70.tar.gz emacs-898a3e47846e78453e89f9f46673297e962dbd70.zip | |
Minor improvement in Emacs user manual
* doc/emacs/files.texi (Directories): Document that
'directory-free-space-program' and 'directory-free-space-args' are
only for local filesystems. Suggested by Michael Albinus
<michael.albinus@gmx.de> in emacs-manual-bugs@gnu.org.
| -rw-r--r-- | doc/emacs/files.texi | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index 0b7a6bcb526..45db6d88b4c 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi | |||
| @@ -1302,10 +1302,14 @@ default). | |||
| 1302 | @vindex directory-free-space-program | 1302 | @vindex directory-free-space-program |
| 1303 | @vindex directory-free-space-args | 1303 | @vindex directory-free-space-args |
| 1304 | In verbose directory listings, Emacs adds information about the | 1304 | In verbose directory listings, Emacs adds information about the |
| 1305 | amount of free space on the disk that contains the directory. To do | 1305 | amount of free space on the disk that contains the directory. You can |
| 1306 | this, it runs the program specified by | 1306 | customize how this is done for local filesystems via the variables |
| 1307 | @code{directory-free-space-program} with arguments | 1307 | @code{directory-free-space-program} and |
| 1308 | @code{directory-free-space-args}. | 1308 | @code{directory-free-space-args}: the former specifies what program to |
| 1309 | run (default: @command{df}), the latter which arguments to pass to | ||
| 1310 | that program (default is system-dependent). (On MS-Windows and | ||
| 1311 | MS-DOS, these two variables are ignored, and an internal Emacs | ||
| 1312 | implementation of the same functionality is used instead.) | ||
| 1309 | 1313 | ||
| 1310 | The command @kbd{M-x delete-directory} prompts for a directory's name | 1314 | The command @kbd{M-x delete-directory} prompts for a directory's name |
| 1311 | using the minibuffer, and deletes the directory if it is empty. If | 1315 | using the minibuffer, and deletes the directory if it is empty. If |