From 965d1f0e2552c367183129546716f93eef5e5c49 Mon Sep 17 00:00:00 2001
From: Glenn Morris <rgm@gnu.org>
Date: Fri, 21 Sep 2007 02:59:20 +0000
Subject: [PATCH] Diane Murray  <disumu at x3y2z1.net>

(url-get-normalized-date): Pass full timezone information to
timezone-make-date-arpa-standard, since zone name may be unknown.
---
 lisp/ChangeLog       | 3 +++
 lisp/url/ChangeLog   | 6 ++++++
 lisp/url/url-util.el | 2 +-
 3 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9ece0f54621..381728aef3f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
 2007-09-21  Glenn Morris  <rgm@gnu.org>
 
+	* eshell/esh-mode.el (eshell-output-filter-functions): Add
+	eshell-postoutput-scroll-to-bottom.
+
 	* loadup.el: Remove termdev.
 
 2007-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 9b78cf98bb5..d8f3a512d1c 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,9 @@
+2007-09-21  Diane Murray  <disumu@x3y2z1.net>
+
+	* url-util.el (url-get-normalized-date): Pass full timezone
+	information to timezone-make-date-arpa-standard, since zone name
+	may be unknown.
+
 2007-09-03  Diane Murray  <disumu@x3y2z1.net>
 
 	* url-http.el (url-http-parse-headers): Bind the current buffer
diff --git a/lisp/url/url-util.el b/lisp/url/url-util.el
index 5b5b43a7db7..9f73fa435be 100644
--- a/lisp/url/url-util.el
+++ b/lisp/url/url-util.el
@@ -190,7 +190,7 @@ Will not do anything if `url-show-status' is nil."
   (let* ((raw (if specified-time (current-time-string specified-time)
 		(current-time-string)))
 	 (gmt (timezone-make-date-arpa-standard raw
-						(nth 1 (current-time-zone))
+						(current-time-zone)
 						"GMT"))
 	 (parsed (timezone-parse-date gmt))
 	 (day (cdr-safe (assoc (substring raw 0 3) url-weekday-alist)))
-- 
2.39.5