From: Glenn Morris Date: Fri, 21 Sep 2007 02:59:20 +0000 (+0000) Subject: Diane Murray X-Git-Tag: emacs-pretest-23.0.90~10791 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=965d1f0e2552c367183129546716f93eef5e5c49;p=emacs.git Diane Murray (url-get-normalized-date): Pass full timezone information to timezone-make-date-arpa-standard, since zone name may be unknown. --- 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 + * eshell/esh-mode.el (eshell-output-filter-functions): Add + eshell-postoutput-scroll-to-bottom. + * loadup.el: Remove termdev. 2007-09-20 Stefan Monnier 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 + + * 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 * 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)))