]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve documentation of 'dired-do-compress'
authorEli Zaretskii <eliz@gnu.org>
Thu, 22 Nov 2018 19:05:14 +0000 (21:05 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 22 Nov 2018 19:05:14 +0000 (21:05 +0200)
* lisp/dired-aux.el (dired-do-compress): Describe in the doc
string the effect on directories and on compressed archive.
(Bug#33450)

lisp/dired-aux.el

index eaf5f257012c5256d395ab0a0a4afc071bb6daf4..2800bbe90213d22fce3c14fa3cbe052f931a8afd 100644 (file)
@@ -1225,7 +1225,12 @@ return t; if SYM is q or ESC, return nil."
 \f
 ;;;###autoload
 (defun dired-do-compress (&optional arg)
-  "Compress or uncompress marked (or next ARG) files."
+  "Compress or uncompress marked (or next ARG) files.
+If invoked on a directory, compress all of the files in
+the directory and all of its subdirectories, recursively,
+into a .tar.gz archive.
+If invoked on a .tar.gz or a .tgz or a .zip or a .7z archive,
+uncompress and unpack all the files in the archive."
   (interactive "P")
   (dired-map-over-marks-check #'dired-compress arg 'compress t))