diff lisp/dired-x.el @ 16959:d04999ad25b9

(dired-guess-shell-alist-default): Make .eps extension act like .ps extension.
author Richard M. Stallman <rms@gnu.org>
date Sat, 01 Feb 1997 20:02:16 +0000
parents 19b2aeb694d1
children 0714535d0e28
line wrap: on
line diff
--- a/lisp/dired-x.el	Sat Feb 01 19:14:49 1997 +0000
+++ b/lisp/dired-x.el	Sat Feb 01 20:02:16 1997 +0000
@@ -947,11 +947,11 @@
    '("\\.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))