diff options
| author | Leo Liu | 2012-06-23 21:53:52 +0800 |
|---|---|---|
| committer | Leo Liu | 2012-06-23 21:53:52 +0800 |
| commit | 4bdc63b8b7b6f800b5a5ef1f2fd8bc2bf4acb8be (patch) | |
| tree | 7d2ad74df1f39a317142b131b7573b74aca25fce | |
| parent | e994155e9592cd63f792e98167aca31f9b31996a (diff) | |
| download | emacs-4bdc63b8b7b6f800b5a5ef1f2fd8bc2bf4acb8be.tar.gz emacs-4bdc63b8b7b6f800b5a5ef1f2fd8bc2bf4acb8be.zip | |
Backport: Fix mal-formed defconst in url-http-codes
| -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 4831223573d..685f32505b1 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-06-23 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * url-http.el (url-http-codes): Fix mal-formed defconst. | ||
| 4 | |||
| 1 | 2012-06-01 Chong Yidong <cyd@gnu.org> | 5 | 2012-06-01 Chong Yidong <cyd@gnu.org> |
| 2 | 6 | ||
| 3 | * Version 24.1 released. | 7 | * Version 24.1 released. |
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index a4726489814..2bae194af1d 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 |