diff options
| author | Richard M. Stallman | 1997-02-01 20:02:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-02-01 20:02:16 +0000 |
| commit | 35f58ede930834a5bb44aea3434234155e07078b (patch) | |
| tree | 55befe7c0252ff21735acbd5e39163fb29151a9b | |
| parent | d2d8b77eab9c15409883f48924562ca8a5309a8c (diff) | |
| download | emacs-35f58ede930834a5bb44aea3434234155e07078b.tar.gz emacs-35f58ede930834a5bb44aea3434234155e07078b.zip | |
(dired-guess-shell-alist-default): Make .eps
extension act like .ps extension.
| -rw-r--r-- | lisp/dired-x.el | 6 |
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." | |||
| 947 | '("\\.shar.Z$" "zcat * | unshar") | 947 | '("\\.shar.Z$" "zcat * | unshar") |
| 948 | '("\\.shar.g?z$" "gunzip -qc * | unshar") | 948 | '("\\.shar.g?z$" "gunzip -qc * | unshar") |
| 949 | 949 | ||
| 950 | '("\\.ps$" "ghostview" "xv" "lpr") | 950 | '("\\.e?ps$" "ghostview" "xv" "lpr") |
| 951 | (list "\\.ps.g?z$" "gunzip -qc * | ghostview -" | 951 | (list "\\.e?ps.g?z$" "gunzip -qc * | ghostview -" |
| 952 | ;; Optional decompression. | 952 | ;; Optional decompression. |
| 953 | '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q"))) | 953 | '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q"))) |
| 954 | (list "\\.ps.Z$" "zcat * | ghostview -" | 954 | (list "\\.e?ps.Z$" "zcat * | ghostview -" |
| 955 | ;; Optional conversion to gzip format. | 955 | ;; Optional conversion to gzip format. |
| 956 | '(concat "znew" (if dired-guess-shell-gzip-quiet " -q") | 956 | '(concat "znew" (if dired-guess-shell-gzip-quiet " -q") |
| 957 | " " dired-guess-shell-znew-switches)) | 957 | " " dired-guess-shell-znew-switches)) |