Show
Ignore:
Timestamp:
07/29/06 07:48:34 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/gnus/mm-url.el

    r4037 r4131  
    302302    (mm-url-load-url) 
    303303    (let ((name buffer-file-name) 
    304           (url-request-extra-headers (list (cons "Connection" "Close"))) 
     304          (url-request-extra-headers 
     305           ;; ISTM setting a Connection header was a workaround for 
     306           ;; older versions of url included with w3, but it does more 
     307           ;; harm than good with the one shipped with Emacs. --ansel 
     308           (if (not (and (boundp 'url-version) 
     309                         (equal url-version "Emacs"))) 
     310               (list (cons "Connection" "Close")))) 
    305311          (url-package-name (or mm-url-package-name 
    306312                                url-package-name))