diff options
| -rw-r--r-- | doc/emacs/dired.texi | 10 | ||||
| -rw-r--r-- | doc/emacs/rmail.texi | 2 | ||||
| -rw-r--r-- | doc/emacs/windows.texi | 2 | ||||
| -rw-r--r-- | etc/NEWS.26 | 10 |
4 files changed, 20 insertions, 4 deletions
diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi index 1b03a3967aa..1612fc75d67 100644 --- a/doc/emacs/dired.texi +++ b/doc/emacs/dired.texi | |||
| @@ -779,9 +779,15 @@ suitable guess made using the variables @code{lpr-command} and | |||
| 779 | @item Z | 779 | @item Z |
| 780 | Compress the specified files (@code{dired-do-compress}). If the file | 780 | Compress the specified files (@code{dired-do-compress}). If the file |
| 781 | appears to be a compressed file already, uncompress it instead. Each | 781 | appears to be a compressed file already, uncompress it instead. Each |
| 782 | marked file is compressed into its own archive. This uses the | 782 | marked file is compressed into its own archive; this uses the |
| 783 | @command{gzip} program if it is available, otherwise it uses | 783 | @command{gzip} program if it is available, otherwise it uses |
| 784 | @command{compress}. | 784 | @command{compress}. On a directory name, this command produces a |
| 785 | compressed @file{.tar.gz} archive containing all of the directory's | ||
| 786 | files, by running the @command{tar} command with output piped to | ||
| 787 | @command{gzip}. To allow decompression of compressed directories, | ||
| 788 | typing @kbd{Z} on a @file{.tar.gz} or @file{.tgz} archive file unpacks | ||
| 789 | all the files in the archive into a directory whose name is the | ||
| 790 | archive name with the extension removed. | ||
| 785 | 791 | ||
| 786 | @findex dired-do-compress-to | 792 | @findex dired-do-compress-to |
| 787 | @kindex c @r{(Dired)} | 793 | @kindex c @r{(Dired)} |
diff --git a/doc/emacs/rmail.texi b/doc/emacs/rmail.texi index a17ef4938e6..c975b588411 100644 --- a/doc/emacs/rmail.texi +++ b/doc/emacs/rmail.texi | |||
| @@ -318,7 +318,7 @@ effect of a @kbd{d} command in most cases. It undeletes the current | |||
| 318 | message if the current message is deleted. Otherwise it moves backward | 318 | message if the current message is deleted. Otherwise it moves backward |
| 319 | to previous messages until a deleted message is found, and undeletes | 319 | to previous messages until a deleted message is found, and undeletes |
| 320 | that message. A numeric prefix argument serves as a repeat count, to | 320 | that message. A numeric prefix argument serves as a repeat count, to |
| 321 | allow deletion of several messages in a single command. | 321 | allow undeletion of several messages in a single command. |
| 322 | 322 | ||
| 323 | You can usually undo a @kbd{d} with a @kbd{u} because the @kbd{u} | 323 | You can usually undo a @kbd{d} with a @kbd{u} because the @kbd{u} |
| 324 | moves back to and undeletes the message that the @kbd{d} deleted. But | 324 | moves back to and undeletes the message that the @kbd{d} deleted. But |
diff --git a/doc/emacs/windows.texi b/doc/emacs/windows.texi index 8cc514494dc..93a68e9ca22 100644 --- a/doc/emacs/windows.texi +++ b/doc/emacs/windows.texi | |||
| @@ -553,7 +553,7 @@ buffer. @xref{Follow Mode}. | |||
| 553 | between neighboring windows in a frame. @kbd{M-x windmove-right} | 553 | between neighboring windows in a frame. @kbd{M-x windmove-right} |
| 554 | selects the window immediately to the right of the currently selected | 554 | selects the window immediately to the right of the currently selected |
| 555 | one, and similarly for the left, up, and down | 555 | one, and similarly for the left, up, and down |
| 556 | counterparts. @kbd{M-x windmove-default-keybindings} binds these | 556 | counterparts. @w{@kbd{M-x windmove-default-keybindings}} binds these |
| 557 | commands to @kbd{S-right} etc.; doing so disables shift selection for | 557 | commands to @kbd{S-right} etc.; doing so disables shift selection for |
| 558 | those keys (@pxref{Shift Selection}). | 558 | those keys (@pxref{Shift Selection}). |
| 559 | 559 | ||
diff --git a/etc/NEWS.26 b/etc/NEWS.26 index 6dba2a950bd..4197317fdd4 100644 --- a/etc/NEWS.26 +++ b/etc/NEWS.26 | |||
| @@ -51,6 +51,16 @@ often cause crashes. Set it to nil if you really need those fonts. | |||
| 51 | 51 | ||
| 52 | * Changes in Specialized Modes and Packages in Emacs 26.2 | 52 | * Changes in Specialized Modes and Packages in Emacs 26.2 |
| 53 | 53 | ||
| 54 | ** Dired | ||
| 55 | +++ | ||
| 56 | *** The 'Z' command on a directory name compresses all of its files. | ||
| 57 | It produces a compressed '.tar.gz' archive with all the files in the | ||
| 58 | directory and all of its subdirectories. For symmetry, 'Z' on a | ||
| 59 | '.tar.gz' or a '.tgz' archive extracts all the archived files into a | ||
| 60 | directory whose name is the archive name sans the '.tar.gz' or '.tgz' | ||
| 61 | extension. (This change was actually made in Emacs 26.1, but was not | ||
| 62 | called out in its NEWS.) | ||
| 63 | |||
| 54 | ** Ibuffer | 64 | ** Ibuffer |
| 55 | 65 | ||
| 56 | --- | 66 | --- |