1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

(dired-guess-shell-alist-default): Make .eps

extension act like .ps extension.
This commit is contained in:
Richard M. Stallman 1997-02-01 20:02:16 +00:00
parent d2d8b77eab
commit 35f58ede93

View 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))