summaryrefslogtreecommitdiff
path: root/lisp/dired-x.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-02-01 20:02:16 +0000
committerRichard M. Stallman <rms@gnu.org>1997-02-01 20:02:16 +0000
commita9483e68ffc857d66f786ede81b84614d744318c (patch)
tree7e72155e23078fbce796fe637847d74306007e69 /lisp/dired-x.el
parente3758b893167901c75184eef865211e40c661f6d (diff)
downloademacs-a9483e68ffc857d66f786ede81b84614d744318c.tar.gz
(dired-guess-shell-alist-default): Make .eps
extension act like .ps extension.
Diffstat (limited to 'lisp/dired-x.el')
-rw-r--r--lisp/dired-x.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index a45c9ad52df..f3d89690555 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -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))