diff options
| author | Antoine Levitt | 2011-02-27 23:24:39 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-02-27 23:24:39 -0800 |
| commit | 584a2773996c7f4cd9d84ede8d7817328c88e765 (patch) | |
| tree | 2694a252218629ef7f9d5119fea45342c609ceb7 | |
| parent | ca3afb79d0530a7f100e40d263cf9a3912f597b8 (diff) | |
| download | emacs-584a2773996c7f4cd9d84ede8d7817328c88e765.tar.gz emacs-584a2773996c7f4cd9d84ede8d7817328c88e765.zip | |
* lisp/dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/dired-x.el | 2 |
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 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-02-28 Juanma Barranquero <lekktu@gmail.com> | 5 | 2011-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"))) |