+2006-02-13 Reiner Steib <Reiner.Steib@gmx.de>
+
+ * gnus-art.el (gnus-article-browse-html-parts):
+ `hs-show-html-list' should read `gnus-article-browse-html-parts'.
+ Don't use suffix argument for mm-make-temp-file for Emacs 21
+ compatibility. Remove useless `format'.
+
2006-02-13 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
* nnweb.el (nnweb-google-wash-article): Update regexps.
(when (listp handle)
(cond ((and (bufferp (car handle))
(string-match "text/html" (car (mm-handle-type handle))))
- (let ((tmp-file (mm-make-temp-file
- ;; Do we need to care for 8.3 filenames?
- (format "mm-") nil ".html")))
+ (let ((tmp-file
+ (concat (mm-make-temp-file
+ ;; Do we need to care for 8.3 filenames?
+ (format "mm-") nil) ".html")))
(mm-save-part-to-file handle tmp-file)
(browse-url tmp-file)
(setq showed t)))
;; If multipart, recurse
((and (stringp (car handle))
(string-match "^multipart/" (car handle))
- (setq showed (or showed (hs-show-html-list handle))))))))
+ (setq showed
+ (or showed
+ (gnus-article-browse-html-parts handle))))))))
showed))
;; TODO: Key binding; Remove temp files.