]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-guess-shell-alist-default): Make .eps
authorRichard M. Stallman <rms@gnu.org>
Sat, 1 Feb 1997 20:02:16 +0000 (20:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 1 Feb 1997 20:02:16 +0000 (20:02 +0000)
extension act like .ps extension.

lisp/dired-x.el

index a45c9ad52df5dd3818794ca48359bcd7b3b3255f..f3d896905557ed79b5a502cac69c898beea0c8b2 100644 (file)
@@ -947,11 +947,11 @@ dired."
    '("\\.shar.Z$" "zcat * | unshar")
    '("\\.shar.g?z$" "gunzip -qc * | unshar")
 
-   '("\\.ps$" "ghostview" "xv" "lpr")
-   (list "\\.ps.g?z$" "gunzip -qc * | ghostview -"
+   '("\\.e?ps$" "ghostview" "xv" "lpr")
+   (list "\\.e?ps.g?z$" "gunzip -qc * | ghostview -"
          ;; Optional decompression.
          '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))
-   (list "\\.ps.Z$" "zcat * | ghostview -"
+   (list "\\.e?ps.Z$" "zcat * | ghostview -"
          ;; Optional conversion to gzip format.
          '(concat "znew" (if dired-guess-shell-gzip-quiet " -q")
                   " " dired-guess-shell-znew-switches))