emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99748: Fix wrong variable name.


From: Ted Zlatanov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99748: Fix wrong variable name.
Date: Wed, 24 Mar 2010 20:14:42 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99748
committer: Ted Zlatanov <address@hidden>
branch nick: quickfixes
timestamp: Wed 2010-03-24 20:14:42 -0500
message:
  Fix wrong variable name.
  
  (url-http-parse-headers): Fix wrong variable name.
modified:
  lisp/url/ChangeLog
  lisp/url/url-http.el
=== modified file 'lisp/url/ChangeLog'
--- a/lisp/url/ChangeLog        2010-03-24 09:30:28 +0000
+++ b/lisp/url/ChangeLog        2010-03-25 01:14:42 +0000
@@ -1,5 +1,9 @@
 2010-03-24  Teodor Zlatanov  <address@hidden>
 
+       * url-http.el (url-http-parse-headers): Fix wrong variable name.
+
+2010-03-24  Teodor Zlatanov  <address@hidden>
+
        * url-http.el (url-http-codes): New variable to hold a mapping of
        HTTP status codes' numbers, their symbolic name, and their text.
        (url-http-parse-headers): Use it, leaving the original numeric

=== modified file 'lisp/url/url-http.el'
--- a/lisp/url/url-http.el      2010-03-24 09:30:28 +0000
+++ b/lisp/url/url-http.el      2010-03-25 01:14:42 +0000
@@ -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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]