aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMiles Bader2004-10-01 06:40:26 +0000
committerMiles Bader2004-10-01 06:40:26 +0000
commitf00962112e10ac3f7ddc0070d7bb79d377747015 (patch)
tree3d9976b119d8f99afae44b7c17965fcc297764d3 /lisp
parent424e6532c86e9b5eb783bc68082ceede21a59329 (diff)
downloademacs-f00962112e10ac3f7ddc0070d7bb79d377747015.tar.gz
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')
-rw-r--r--lisp/gnus/ChangeLog10
-rw-r--r--lisp/gnus/gnus-sum.el3
-rw-r--r--lisp/gnus/mailcap.el14
3 files changed, 18 insertions, 9 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 6ac6d46e28f..907ad5f3411 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,13 @@
12004-10-01 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
4 there's no visible header.
5
62004-10-01 Simon Josefsson <jas@extundo.com>
7
8 * mailcap.el (mailcap-mime-data): Add pdf. Remove non-free
9 acroread.
10
12004-09-29 Jesper Harder <harder@ifa.au.dk> 112004-09-29 Jesper Harder <harder@ifa.au.dk>
2 12
3 * gnus.el (gnus-method-to-server): Oops, move it don't delete it. 13 * gnus.el (gnus-method-to-server): Oops, move it don't delete it.
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 8cee2227f3f..92ba2346949 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -8732,7 +8732,8 @@ If ARG is a negative number, hide the unwanted header lines."
8732 (inhibit-point-motion-hooks t) 8732 (inhibit-point-motion-hooks t)
8733 (hidden (if (numberp arg) 8733 (hidden (if (numberp arg)
8734 (>= arg 0) 8734 (>= arg 0)
8735 (gnus-article-hidden-text-p 'headers))) 8735 (or (not (looking-at "[^ \t\n]+:"))
8736 (gnus-article-hidden-text-p 'headers))))
8736 s e) 8737 s e)
8737 (delete-region (point-min) (point-max)) 8738 (delete-region (point-min) (point-max))
8738 (with-current-buffer gnus-original-article-buffer 8739 (with-current-buffer gnus-original-article-buffer
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 @@
1;;; mailcap.el --- MIME media types configuration 1;;; mailcap.el --- MIME media types configuration
2;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 2;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
3;; Free Software Foundation, Inc. 3;; Free Software Foundation, Inc.
4 4
5;; Author: William M. Perry <wmperry@aventail.com> 5;; Author: William M. Perry <wmperry@aventail.com>
@@ -135,23 +135,21 @@
135 (non-viewer . t) 135 (non-viewer . t)
136 (type . "application/zip") 136 (type . "application/zip")
137 ("copiousoutput")) 137 ("copiousoutput"))
138 ;; Prefer free viewers.
139 ("pdf" 138 ("pdf"
140 (viewer . "gv -safer %s") 139 (viewer . "gv -safer %s")
141 (type . "application/pdf") 140 (type . "application/pdf")
142 (test . window-system) 141 (test . window-system)
143 ("print" . ,(concat "pdf2ps %s - | " mailcap-print-command))) 142 ("print" . ,(concat "pdf2ps %s - | " mailcap-print-command)))
144 ("pdf" 143 ("pdf"
145 (viewer . "xpdf %s") 144 (viewer . "gpdf %s")
146 (type . "application/pdf") 145 (type . "application/pdf")
147 ("print" . ,(concat "pdftops %s - | " mailcap-print-command)) 146 ("print" . ,(concat "pdftops %s - | " mailcap-print-command))
148 (test . (eq window-system 'x))) 147 (test . (eq window-system 'x)))
149 ("pdf" 148 ("pdf"
150 (viewer . "acroread %s") 149 (viewer . "xpdf %s")
151 (type . "application/pdf") 150 (type . "application/pdf")
152 ("print" . ,(concat "cat %s | acroread -toPostScript | " 151 ("print" . ,(concat "pdftops %s - | " mailcap-print-command))
153 mailcap-print-command)) 152 (test . (eq window-system 'x)))
154 (test . window-system))
155 ("pdf" 153 ("pdf"
156 (viewer . ,(concat "pdftotext %s -")) 154 (viewer . ,(concat "pdftotext %s -"))
157 (type . "application/pdf") 155 (type . "application/pdf")