aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-11-16 10:19:22 +0200
committerEli Zaretskii2018-11-16 10:19:22 +0200
commit936a8f3093f53442bb759880c8cddd5f4eb539a5 (patch)
treeef1e0eb86ae48bd97dbc7c3553f864196c0fbaad
parent99f99a1fb227ec48f5325b6ccef5815c357b4792 (diff)
downloademacs-936a8f3093f53442bb759880c8cddd5f4eb539a5.tar.gz
emacs-936a8f3093f53442bb759880c8cddd5f4eb539a5.zip
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.
-rw-r--r--doc/emacs/dired.texi10
-rw-r--r--etc/NEWS10
2 files changed, 18 insertions, 2 deletions
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
768@item Z 768@item Z
769Compress the specified files (@code{dired-do-compress}). If the file 769Compress the specified files (@code{dired-do-compress}). If the file
770appears to be a compressed file already, uncompress it instead. Each 770appears to be a compressed file already, uncompress it instead. Each
771marked file is compressed into its own archive. This uses the 771marked file is compressed into its own archive; this uses the
772@command{gzip} program if it is available, otherwise it uses 772@command{gzip} program if it is available, otherwise it uses
773@command{compress}. 773@command{compress}. On a directory name, this command produces a
774compressed @file{.tar.gz} archive containing all of the directory's
775files, by running the @command{tar} command with output piped to
776@command{gzip}. To allow decompression of compressed directories,
777typing @kbd{Z} on a @file{.tar.gz} or @file{.tgz} archive file unpacks
778all the files in the archive into a directory whose name is the
779archive name with the extension removed.
774 780
775@findex dired-do-compress-to 781@findex dired-do-compress-to
776@kindex c @r{(Dired)} 782@kindex c @r{(Dired)}
diff --git a/etc/NEWS b/etc/NEWS
index 6dba2a950bd..4197317fdd4 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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.
57It produces a compressed '.tar.gz' archive with all the files in the
58directory and all of its subdirectories. For symmetry, 'Z' on a
59'.tar.gz' or a '.tgz' archive extracts all the archived files into a
60directory whose name is the archive name sans the '.tar.gz' or '.tgz'
61extension. (This change was actually made in Emacs 26.1, but was not
62called out in its NEWS.)
63
54** Ibuffer 64** Ibuffer
55 65
56--- 66---