aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2007-09-21 02:59:20 +0000
committerGlenn Morris2007-09-21 02:59:20 +0000
commit965d1f0e2552c367183129546716f93eef5e5c49 (patch)
treec4f191f32721fc2acdf8e1d413f812ac34876af4 /lisp
parentea1bf8c799487bf27aa5bc92ed443bcea0717aa3 (diff)
downloademacs-965d1f0e2552c367183129546716f93eef5e5c49.tar.gz
emacs-965d1f0e2552c367183129546716f93eef5e5c49.zip
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.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/url/ChangeLog6
-rw-r--r--lisp/url/url-util.el2
3 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9ece0f54621..381728aef3f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12007-09-21 Glenn Morris <rgm@gnu.org> 12007-09-21 Glenn Morris <rgm@gnu.org>
2 2
3 * eshell/esh-mode.el (eshell-output-filter-functions): Add
4 eshell-postoutput-scroll-to-bottom.
5
3 * loadup.el: Remove termdev. 6 * loadup.el: Remove termdev.
4 7
52007-09-20 Stefan Monnier <monnier@iro.umontreal.ca> 82007-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 @@
12007-09-21 Diane Murray <disumu@x3y2z1.net>
2
3 * url-util.el (url-get-normalized-date): Pass full timezone
4 information to timezone-make-date-arpa-standard, since zone name
5 may be unknown.
6
12007-09-03 Diane Murray <disumu@x3y2z1.net> 72007-09-03 Diane Murray <disumu@x3y2z1.net>
2 8
3 * url-http.el (url-http-parse-headers): Bind the current buffer 9 * 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."
190 (let* ((raw (if specified-time (current-time-string specified-time) 190 (let* ((raw (if specified-time (current-time-string specified-time)
191 (current-time-string))) 191 (current-time-string)))
192 (gmt (timezone-make-date-arpa-standard raw 192 (gmt (timezone-make-date-arpa-standard raw
193 (nth 1 (current-time-zone)) 193 (current-time-zone)
194 "GMT")) 194 "GMT"))
195 (parsed (timezone-parse-date gmt)) 195 (parsed (timezone-parse-date gmt))
196 (day (cdr-safe (assoc (substring raw 0 3) url-weekday-alist))) 196 (day (cdr-safe (assoc (substring raw 0 3) url-weekday-alist)))