From 13bb66537210aacd9841d592c94e2514f7c5aa3a Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 15 Nov 2018 21:59:32 +0200 Subject: Fix a typo in the Emacs manual * doc/emacs/rmail.texi (Rmail Deletion): Fix a typo. Reported by Jorge P. de Morais Neto in emacs-manual-bugs@gnu.org --- doc/emacs/rmail.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/emacs/rmail.texi b/doc/emacs/rmail.texi index c0ea12f6226..5241686cab8 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 message if the current message is deleted. Otherwise it moves backward to previous messages until a deleted message is found, and undeletes that message. A numeric prefix argument serves as a repeat count, to -allow deletion of several messages in a single command. +allow undeletion of several messages in a single command. You can usually undo a @kbd{d} with a @kbd{u} because the @kbd{u} moves back to and undeletes the message that the @kbd{d} deleted. But -- cgit v1.2.1 From 99f99a1fb227ec48f5325b6ccef5815c357b4792 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 16 Nov 2018 09:54:56 +0200 Subject: ; Minor editing change in windows.texi * doc/emacs/windows.texi (Window Convenience): Avoid breaking line in the middle of a key sequence. --- doc/emacs/windows.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/emacs/windows.texi b/doc/emacs/windows.texi index 3369e986f9c..0a05c377039 100644 --- a/doc/emacs/windows.texi +++ b/doc/emacs/windows.texi @@ -546,7 +546,7 @@ buffer. @xref{Follow Mode}. between neighboring windows in a frame. @kbd{M-x windmove-right} selects the window immediately to the right of the currently selected one, and similarly for the left, up, and down -counterparts. @kbd{M-x windmove-default-keybindings} binds these +counterparts. @w{@kbd{M-x windmove-default-keybindings}} binds these commands to @kbd{S-right} etc.; doing so disables shift selection for those keys (@pxref{Shift Selection}). -- cgit v1.2.1 From 936a8f3093f53442bb759880c8cddd5f4eb539a5 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 16 Nov 2018 10:19:22 +0200 Subject: Document Emacs 26 behavior of Dired's 'Z' on directories * doc/emacs/dired.texi (Operating on Files): Document behavior of 'Z' on directories. * etc/NEWS: Belatedly announce the new behavior of Dired's 'Z' on directory names and on .tar.gz archives. --- doc/emacs/dired.texi | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'doc') diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi index fba9d31406e..9c408e13ae7 100644 --- a/doc/emacs/dired.texi +++ b/doc/emacs/dired.texi @@ -768,9 +768,15 @@ suitable guess made using the variables @code{lpr-command} and @item Z Compress the specified files (@code{dired-do-compress}). If the file appears to be a compressed file already, uncompress it instead. Each -marked file is compressed into its own archive. This uses the +marked file is compressed into its own archive; this uses the @command{gzip} program if it is available, otherwise it uses -@command{compress}. +@command{compress}. On a directory name, this command produces a +compressed @file{.tar.gz} archive containing all of the directory's +files, by running the @command{tar} command with output piped to +@command{gzip}. To allow decompression of compressed directories, +typing @kbd{Z} on a @file{.tar.gz} or @file{.tgz} archive file unpacks +all the files in the archive into a directory whose name is the +archive name with the extension removed. @findex dired-do-compress-to @kindex c @r{(Dired)} -- cgit v1.2.1