diff options
| author | Leo Liu | 2012-05-25 18:19:01 +0800 |
|---|---|---|
| committer | Leo Liu | 2012-05-25 18:19:01 +0800 |
| commit | 9979ea1c6cb628840d060ee059b635b2f85fbda7 (patch) | |
| tree | 8f2afd82ee13df9e86025b947db047627d1d145a | |
| parent | ec9d4b084a0057c0db31fb89d34b91b3d90c671e (diff) | |
| download | emacs-9979ea1c6cb628840d060ee059b635b2f85fbda7.tar.gz emacs-9979ea1c6cb628840d060ee059b635b2f85fbda7.zip | |
* lisp/url/url-http.el (url-http-codes): Fix mal-formed defconst.
| -rw-r--r-- | lisp/url/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/url/url-http.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 53950bcbea7..40295f6e1d8 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-05-25 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * url-http.el (url-http-codes): Fix mal-formed defconst. | ||
| 4 | |||
| 1 | 2012-05-15 Ian Eure <ian@simplegeo.com> | 5 | 2012-05-15 Ian Eure <ian@simplegeo.com> |
| 2 | 6 | ||
| 3 | * url-util.el (url-build-query-string): New function (Bug#8706). | 7 | * url-util.el (url-build-query-string): New function (Bug#8706). |
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index ff026da2d21..fbefdbba560 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el | |||
| @@ -110,8 +110,8 @@ request.") | |||
| 110 | (503 service-unavailable "Service unavailable") | 110 | (503 service-unavailable "Service unavailable") |
| 111 | (504 gateway-timeout "Gateway time-out") | 111 | (504 gateway-timeout "Gateway time-out") |
| 112 | (505 http-version-not-supported "HTTP version not supported") | 112 | (505 http-version-not-supported "HTTP version not supported") |
| 113 | (507 insufficient-storage "Insufficient storage") | 113 | (507 insufficient-storage "Insufficient storage")) |
| 114 | "The HTTP return codes and their text.")) | 114 | "The HTTP return codes and their text.") |
| 115 | 115 | ||
| 116 | ;(eval-when-compile | 116 | ;(eval-when-compile |
| 117 | ;; These are all macros so that they are hidden from external sight | 117 | ;; These are all macros so that they are hidden from external sight |