diff options
| author | Glenn Morris | 2008-08-23 03:16:58 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-08-23 03:16:58 +0000 |
| commit | 70ee5ed100ed2c7f3247330ee73bdc5677607911 (patch) | |
| tree | b2b0a658a9c0c8acc37897c088aa5888aad4a98d | |
| parent | 6733e8271acee7cc9d5aadbe8c424a0c73885e7a (diff) | |
| download | emacs-70ee5ed100ed2c7f3247330ee73bdc5677607911.tar.gz emacs-70ee5ed100ed2c7f3247330ee73bdc5677607911.zip | |
(dired-guess-shell-alist-default): Add .mp3 and .ogg.
(dired-guess-shell-alist-user): Doc fix. (Bug#417).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/dired-x.el | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 117f9519909..99b2afb2a2c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-08-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * dired-x.el (dired-guess-shell-alist-default): Add .mp3 and .ogg. | ||
| 4 | (dired-guess-shell-alist-user): Doc fix. (Bug#417). | ||
| 5 | |||
| 1 | 2008-08-23 Chong Yidong <cyd@stupidchicken.com> | 6 | 2008-08-23 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * subr.el (temp-buffer-show-hook): Doc fix. | 8 | * subr.el (temp-buffer-show-hook): Doc fix. |
diff --git a/lisp/dired-x.el b/lisp/dired-x.el index a23b90118b7..5495d649132 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; dired-x.el --- extra Dired functionality -*-byte-compile-dynamic: t;-*- | 1 | ;;; dired-x.el --- extra Dired functionality -*-byte-compile-dynamic: t;-*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1993, 1994, 1997, 2001, 2002, 2003, 2004, | 3 | ;; Copyright (C) 1993, 1994, 1997, 2001, 2002, 2003, 2004, 2005, 2006, |
| 4 | ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. | 4 | ;; 2007, 2008 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de> | 6 | ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de> |
| 7 | ;; Lawrence R. Dodd <dodd@roebling.poly.edu> | 7 | ;; Lawrence R. Dodd <dodd@roebling.poly.edu> |
| @@ -1062,6 +1062,8 @@ dired." | |||
| 1062 | '("\\.dvi$" "xdvi" "dvips") ; preview and printing | 1062 | '("\\.dvi$" "xdvi" "dvips") ; preview and printing |
| 1063 | '("\\.au$" "play") ; play Sun audiofiles | 1063 | '("\\.au$" "play") ; play Sun audiofiles |
| 1064 | '("\\.mpe?g$\\|\\.avi$" "xine -p") | 1064 | '("\\.mpe?g$\\|\\.avi$" "xine -p") |
| 1065 | '("\\.ogg$" "ogg123") | ||
| 1066 | '("\\.mp3$" "mpg123") | ||
| 1065 | '("\\.wav$" "play") | 1067 | '("\\.wav$" "play") |
| 1066 | '("\\.uu$" "uudecode") ; for uudecoded files | 1068 | '("\\.uu$" "uudecode") ; for uudecoded files |
| 1067 | '("\\.hqx$" "mcvert") | 1069 | '("\\.hqx$" "mcvert") |
| @@ -1121,6 +1123,9 @@ to a string. If several COMMANDs are given, the first one will be the default | |||
| 1121 | and the rest will be added temporarily to the history and can be retrieved | 1123 | and the rest will be added temporarily to the history and can be retrieved |
| 1122 | with \\[previous-history-element] (M-p) . | 1124 | with \\[previous-history-element] (M-p) . |
| 1123 | 1125 | ||
| 1126 | The variable `dired-guess-shell-case-fold-search' controls whether | ||
| 1127 | REGEXP is matched case-sensitively. | ||
| 1128 | |||
| 1124 | You can set this variable in your ~/.emacs. For example, to add rules for | 1129 | You can set this variable in your ~/.emacs. For example, to add rules for |
| 1125 | `.foo' and `.bar' files, write | 1130 | `.foo' and `.bar' files, write |
| 1126 | 1131 | ||