From 9979ea1c6cb628840d060ee059b635b2f85fbda7 Mon Sep 17 00:00:00 2001
From: Leo Liu <sdl.web@gmail.com>
Date: Fri, 25 May 2012 18:19:01 +0800
Subject: [PATCH] * lisp/url/url-http.el (url-http-codes): Fix mal-formed
 defconst.

---
 lisp/url/ChangeLog   | 4 ++++
 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 @@
+2012-05-25  Leo Liu  <sdl.web@gmail.com>
+
+	* url-http.el (url-http-codes): Fix mal-formed defconst.
+
 2012-05-15  Ian Eure  <ian@simplegeo.com>
 
 	* 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.")
     (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
-- 
2.39.5