aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-02-14 09:58:33 +0000
committerRichard M. Stallman2005-02-14 09:58:33 +0000
commit76bad53408807727df919cb1bd5fe3c8d9e2d69e (patch)
treef664c4951529f666a591211519a722f691eff66e
parent470cefd3418795ccf2416846e2cd91562d402ea5 (diff)
downloademacs-76bad53408807727df919cb1bd5fe3c8d9e2d69e.tar.gz
emacs-76bad53408807727df919cb1bd5fe3c8d9e2d69e.zip
(url-http-parse-headers): Test url-automatic-caching.
-rw-r--r--lisp/url/url-http.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 3a0fbf6ecd6..872ea22ce05 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -413,7 +413,7 @@ should be shown to the user."
413 ;; Generic success for all others. Store in the cache, and 413 ;; Generic success for all others. Store in the cache, and
414 ;; mark it as successful. 414 ;; mark it as successful.
415 (widen) 415 (widen)
416 (if (equal url-http-method "GET") 416 (if (and url-automatic-caching (equal url-http-method "GET"))
417 (url-store-in-cache (current-buffer))) 417 (url-store-in-cache (current-buffer)))
418 (setq success t)))) 418 (setq success t))))
419 (3 ; Redirection 419 (3 ; Redirection