Changeset 4079 for trunk/lisp/url/url-http.el
- Timestamp:
- 05/13/06 11:31:18 (3 years ago)
- Files:
-
- trunk/lisp/url/url-http.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/url/url-http.el
r4058 r4079 387 387 (mail-narrow-to-head) 388 388 ;;(narrow-to-region (point-min) url-http-end-of-headers) 389 (let ((connection (mail-fetch-field "Connection"))) 390 (if (and connection 391 (string= (downcase connection) "close")) 392 (delete-process url-http-process))) 389 393 (let ((class nil) 390 394 (success nil)) … … 1138 1142 (setq status (url-http-symbol-value-in-buffer 'url-http-response-status 1139 1143 buffer 500) 1140 exists (and (>= status 200) (< status 300))) 1144 exists (and (integerp status) 1145 (>= status 200) (< status 300))) 1141 1146 (kill-buffer buffer)) 1142 1147 exists))
