From: Leo Liu Date: Sat, 23 Jun 2012 13:53:52 +0000 (+0800) Subject: Backport: Fix mal-formed defconst in url-http-codes X-Git-Tag: emacs-24.2~72 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4bdc63b8b7b6f800b5a5ef1f2fd8bc2bf4acb8be;p=emacs.git Backport: Fix mal-formed defconst in url-http-codes --- 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 @@ +2012-06-23 Leo Liu + + * url-http.el (url-http-codes): Fix mal-formed defconst. + 2012-06-01 Chong Yidong * 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.") (503 service-unavailable "Service unavailable") (504 gateway-timeout "Gateway time-out") (505 http-version-not-supported "HTTP version not supported") - (507 insufficient-storage "Insufficient storage") -"The HTTP return codes and their text.")) + (507 insufficient-storage "Insufficient storage")) + "The HTTP return codes and their text.") ;(eval-when-compile ;; These are all macros so that they are hidden from external sight