aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Levitt2011-02-27 23:24:39 -0800
committerGlenn Morris2011-02-27 23:24:39 -0800
commit584a2773996c7f4cd9d84ede8d7817328c88e765 (patch)
tree2694a252218629ef7f9d5119fea45342c609ceb7
parentca3afb79d0530a7f100e40d263cf9a3912f597b8 (diff)
downloademacs-584a2773996c7f4cd9d84ede8d7817328c88e765.tar.gz
emacs-584a2773996c7f4cd9d84ede8d7817328c88e765.zip
* lisp/dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/dired-x.el2
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4fe7b7883f3..05541c793d9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-02-28 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
2
3 * dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.
4
12011-02-28 Juanma Barranquero <lekktu@gmail.com> 52011-02-28 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * emacs-lisp/pcase.el (pcase, pcase--u1, pcase--q1): 7 * emacs-lisp/pcase.el (pcase, pcase--u1, pcase--q1):
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index ce07676fc99..6ed3cd11312 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -988,6 +988,8 @@ replace it with a dir-locals-file `./%s'"
988 '("\\.lzh$" "lharc x") 988 '("\\.lzh$" "lharc x")
989 '("\\.arc$" "arc x") 989 '("\\.arc$" "arc x")
990 '("\\.shar$" "unshar") 990 '("\\.shar$" "unshar")
991 '("\\.rar$" "unrar x")
992 '("\\.7z$" "7z x")
991 993
992 ;; Compression. 994 ;; Compression.
993 (list "\\.g?z$" '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q"))) 995 (list "\\.g?z$" '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))