aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatsumi Yamaoka2011-11-30 06:05:47 +0000
committerKatsumi Yamaoka2011-11-30 06:05:47 +0000
commitdfdbf7af98bf921f2fa2cdd72405e9522a950dc9 (patch)
treeb8538e60b632aa511eceeca9e68374a1e6340334
parent087ef505f2853594c8f9c2756e7d31097d82c081 (diff)
downloademacs-dfdbf7af98bf921f2fa2cdd72405e9522a950dc9.tar.gz
emacs-dfdbf7af98bf921f2fa2cdd72405e9522a950dc9.zip
gnus-art.el (gnus-article-browse-html-parts): Fix previous commit.
-rw-r--r--lisp/gnus/gnus-art.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index e3eb3a04942..60cd369875d 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -2880,12 +2880,13 @@ message header will be added to the bodies of the \"text/html\" parts."
2880 gnus-article-mime-handles) 2880 gnus-article-mime-handles)
2881 cid-dir)) 2881 cid-dir))
2882 (when (eq system-type 'cygwin) 2882 (when (eq system-type 'cygwin)
2883 (setq cid-file (substring 2883 (setq cid-file
2884 (with-output-to-string 2884 (concat "/" (substring
2885 (call-process "cygpath" nil 2885 (with-output-to-string
2886 standard-output 2886 (call-process "cygpath" nil
2887 nil "-m" cid-file)) 2887 standard-output
2888 0 -1))) 2888 nil "-m" cid-file))
2889 0 -1))))
2889 (replace-match (concat "file://" cid-file) 2890 (replace-match (concat "file://" cid-file)
2890 nil nil nil 1)))) 2891 nil nil nil 1))))
2891 (unless content (setq content (buffer-string)))) 2892 (unless content (setq content (buffer-string))))