diff options
author | Miles Bader <miles@gnu.org> | 2004-10-01 06:40:26 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2004-10-01 06:40:26 +0000 |
commit | f00962112e10ac3f7ddc0070d7bb79d377747015 (patch) | |
tree | 3d9976b119d8f99afae44b7c17965fcc297764d3 /lisp/gnus/mailcap.el | |
parent | 424e6532c86e9b5eb783bc68082ceede21a59329 (diff) | |
download | emacs-f00962112e10ac3f7ddc0070d7bb79d377747015.tar.gz emacs-f00962112e10ac3f7ddc0070d7bb79d377747015.tar.bz2 emacs-f00962112e10ac3f7ddc0070d7bb79d377747015.zip |
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-589
Merge from gnus--rel--5.10
Patches applied:
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-39
Merge from emacs--cvs-trunk--0
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-40
- miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-41
Update from CVS
Diffstat (limited to 'lisp/gnus/mailcap.el')
-rw-r--r-- | lisp/gnus/mailcap.el | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/lisp/gnus/mailcap.el b/lisp/gnus/mailcap.el index db0ab6143e1..d285e342370 100644 --- a/lisp/gnus/mailcap.el +++ b/lisp/gnus/mailcap.el @@ -1,5 +1,5 @@ ;;; mailcap.el --- MIME media types configuration -;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 +;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 ;; Free Software Foundation, Inc. ;; Author: William M. Perry <wmperry@aventail.com> @@ -135,23 +135,21 @@ (non-viewer . t) (type . "application/zip") ("copiousoutput")) - ;; Prefer free viewers. ("pdf" (viewer . "gv -safer %s") (type . "application/pdf") (test . window-system) ("print" . ,(concat "pdf2ps %s - | " mailcap-print-command))) ("pdf" - (viewer . "xpdf %s") + (viewer . "gpdf %s") (type . "application/pdf") ("print" . ,(concat "pdftops %s - | " mailcap-print-command)) (test . (eq window-system 'x))) ("pdf" - (viewer . "acroread %s") - (type . "application/pdf") - ("print" . ,(concat "cat %s | acroread -toPostScript | " - mailcap-print-command)) - (test . window-system)) + (viewer . "xpdf %s") + (type . "application/pdf") + ("print" . ,(concat "pdftops %s - | " mailcap-print-command)) + (test . (eq window-system 'x))) ("pdf" (viewer . ,(concat "pdftotext %s -")) (type . "application/pdf") |