1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

Fix wrong variable name.

(url-http-parse-headers): Fix wrong variable name.
This commit is contained in:
Ted Zlatanov 2010-03-24 20:14:42 -05:00
parent 18c812bde5
commit 89734fb6f6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-03-24 Teodor Zlatanov <tzz@lifelogs.com>
* url-http.el (url-http-parse-headers): Fix wrong variable name.
2010-03-24 Teodor Zlatanov <tzz@lifelogs.com>
* url-http.el (url-http-codes): New variable to hold a mapping of

View File

@ -486,7 +486,7 @@ should be shown to the user."
(class nil)
(success nil)
;; other status symbols: jewelry and luxury cars
(status-symbol (cadr (assq status-number url-http-codes))))
(status-symbol (cadr (assq url-http-response-status url-http-codes))))
(setq class (/ url-http-response-status 100))
(url-http-debug "Parsed HTTP headers: class=%d status=%d" class url-http-response-status)
(url-http-handle-cookies)