gnus-art.el (gnus-article-browse-html-parts): Convert link file names for Cygwin.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 30 Nov 2011 01:07:17 +0000 (01:07 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 30 Nov 2011 01:07:17 +0000 (01:07 +0000)
lisp/ChangeLog
lisp/gnus-art.el

index ecb78c6..631e9ba 100644 (file)
@@ -1,3 +1,8 @@
+2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
+       for Cygwin.
+
 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
 
        * gnus-group.el (gnus-group-prepare-flat):
index 0abc802..e3eb3a0 100644 (file)
@@ -2879,6 +2879,13 @@ message header will be added to the bodies of the \"text/html\" parts."
                                (with-current-buffer gnus-article-buffer
                                  gnus-article-mime-handles)
                                cid-dir))
+                    (when (eq system-type 'cygwin)
+                      (setq cid-file (substring
+                                      (with-output-to-string
+                                        (call-process "cygpath" nil
+                                                      standard-output
+                                                      nil "-m" cid-file))
+                                      0 -1)))
                     (replace-match (concat "file://" cid-file)
                                    nil nil nil 1))))
               (unless content (setq content (buffer-string))))