]> git.eshelyaron.com Git - emacs.git/commitdiff
Diane Murray <disumu at x3y2z1.net>
authorGlenn Morris <rgm@gnu.org>
Fri, 21 Sep 2007 02:59:20 +0000 (02:59 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 21 Sep 2007 02:59:20 +0000 (02:59 +0000)
(url-get-normalized-date): Pass full timezone information to
timezone-make-date-arpa-standard, since zone name may be unknown.

lisp/ChangeLog
lisp/url/ChangeLog
lisp/url/url-util.el

index 9ece0f546213f4edfb5a7348494a54af60439d1d..381728aef3f15b6e59507245d0f8d1197285c4df 100644 (file)
@@ -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>
index 9b78cf98bb55eda479e25ed5830ad8b594028f48..d8f3a512d1c0674e0513e0547e26a498c5da86f3 100644 (file)
@@ -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
index 5b5b43a7db7b75888f06d44d34ccb3d56f49638f..9f73fa435be4b1fc6bf9ccd6d208aa8ae0cdc741 100644 (file)
@@ -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)))