From: Antoine Levitt Date: Mon, 28 Feb 2011 07:24:39 +0000 (-0800) Subject: * lisp/dired-x.el (dired-guess-shell-alist-default): Add rar and 7z. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~700 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=584a2773996c7f4cd9d84ede8d7817328c88e765;p=emacs.git * lisp/dired-x.el (dired-guess-shell-alist-default): Add rar and 7z. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4fe7b7883f3..05541c793d9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-02-28 Antoine Levitt (tiny change) + + * dired-x.el (dired-guess-shell-alist-default): Add rar and 7z. + 2011-02-28 Juanma Barranquero * 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'" '("\\.lzh$" "lharc x") '("\\.arc$" "arc x") '("\\.shar$" "unshar") + '("\\.rar$" "unrar x") + '("\\.7z$" "7z x") ;; Compression. (list "\\.g?z$" '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))