]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-guess-shell-alist-default): Add .mp3 and .ogg.
authorGlenn Morris <rgm@gnu.org>
Sat, 23 Aug 2008 03:16:58 +0000 (03:16 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 23 Aug 2008 03:16:58 +0000 (03:16 +0000)
(dired-guess-shell-alist-user): Doc fix.  (Bug#417).

lisp/ChangeLog
lisp/dired-x.el

index 117f95199092968e7c192eddbdc08adc37256295..99b2afb2a2c3df413a3ddc7831ce850eeb0baa28 100644 (file)
@@ -1,3 +1,8 @@
+2008-08-23  Glenn Morris  <rgm@gnu.org>
+
+       * dired-x.el (dired-guess-shell-alist-default): Add .mp3 and .ogg.
+       (dired-guess-shell-alist-user): Doc fix.  (Bug#417).
+
 2008-08-23  Chong Yidong  <cyd@stupidchicken.com>
 
        * subr.el (temp-buffer-show-hook): Doc fix.
index a23b90118b7f557f56d631f5990823cc7c6ad69d..5495d6491320998df176e5c22b50a2a53f85d6a4 100644 (file)
@@ -1,7 +1,7 @@
 ;;; dired-x.el --- extra Dired functionality -*-byte-compile-dynamic: t;-*-
 
-;; Copyright (C) 1993, 1994, 1997, 2001, 2002, 2003, 2004,
-;;   2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 1994, 1997, 2001, 2002, 2003, 2004, 2005, 2006,
+;;   2007, 2008 Free Software Foundation, Inc.
 
 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
 ;;     Lawrence R. Dodd <dodd@roebling.poly.edu>
@@ -1062,6 +1062,8 @@ dired."
    '("\\.dvi$" "xdvi" "dvips")         ; preview and printing
    '("\\.au$" "play")                  ; play Sun audiofiles
    '("\\.mpe?g$\\|\\.avi$" "xine -p")
+   '("\\.ogg$" "ogg123")
+   '("\\.mp3$" "mpg123")
    '("\\.wav$" "play")
    '("\\.uu$" "uudecode")              ; for uudecoded files
    '("\\.hqx$" "mcvert")
@@ -1121,6 +1123,9 @@ to a string.  If several COMMANDs are given, the first one will be the default
 and the rest will be added temporarily to the history and can be retrieved
 with \\[previous-history-element] (M-p) .
 
+The variable `dired-guess-shell-case-fold-search' controls whether
+REGEXP is matched case-sensitively.
+
 You can set this variable in your ~/.emacs.  For example, to add rules for
 `.foo' and `.bar' files, write