# HG changeset patch # User Ted Zlatanov # Date 1269479682 18000 # Node ID 0e139e55fc1ba5d1a0edcdf67198f2e887e227d1 # Parent d59e6301c2cd4bacaca0b42e28c61d63aa8f2d29 Fix wrong variable name. (url-http-parse-headers): Fix wrong variable name. diff -r d59e6301c2cd -r 0e139e55fc1b lisp/url/ChangeLog --- a/lisp/url/ChangeLog Wed Mar 24 20:06:08 2010 -0400 +++ b/lisp/url/ChangeLog Wed Mar 24 20:14:42 2010 -0500 @@ -1,3 +1,7 @@ +2010-03-24 Teodor Zlatanov + + * url-http.el (url-http-parse-headers): Fix wrong variable name. + 2010-03-24 Teodor Zlatanov * url-http.el (url-http-codes): New variable to hold a mapping of diff -r d59e6301c2cd -r 0e139e55fc1b lisp/url/url-http.el --- a/lisp/url/url-http.el Wed Mar 24 20:06:08 2010 -0400 +++ b/lisp/url/url-http.el Wed Mar 24 20:14:42 2010 -0500 @@ -486,7 +486,7 @@ (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)