]> git.eshelyaron.com Git - emacs.git/commitdiff
Pass no argument to gnus-float-time rather than current-time.
authorGlenn Morris <rgm@gnu.org>
Wed, 2 Sep 2009 06:38:07 +0000 (06:38 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 2 Sep 2009 06:38:07 +0000 (06:38 +0000)
lisp/gnus/gnus-delay.el
lisp/gnus/gnus-util.el

index bd781f9df3024092ffd069648288e697d0b1fc57..eb227d934cd9ccb9a0c86cf848f8272ec56896c0 100644 (file)
@@ -105,7 +105,7 @@ DELAY is a string, giving the length of the time.  Possible values are:
           (setq deadline (gnus-float-time (apply 'encode-time
                                                  (append deadline nil))))
           ;; If this time has passed already, add a day.
-          (when (< deadline (gnus-float-time (current-time)))
+          (when (< deadline (gnus-float-time))
             (setq deadline (+ 3600 deadline))) ;3600 secs/day
           ;; Convert seconds to date header.
           (setq deadline (message-make-date
@@ -128,8 +128,7 @@ DELAY is a string, giving the length of the time.  Possible values are:
                 (t
                  (setq delay (* num 60))))
           (setq deadline (message-make-date
-                          (seconds-to-time (+ (gnus-float-time (current-time))
-                                              delay)))))
+                          (seconds-to-time (+ (gnus-float-time) delay)))))
          (t (error "Malformed delay `%s'" delay)))
     (message-add-header (format "%s: %s" gnus-delay-header deadline)))
   (set-buffer-modified-p t)
index fb2cdbce1181d42ba74c1d786d445ea9bb50ccde..bd870a2f1c84229f868e209c2aba0543c4ad819c 100644 (file)
@@ -451,7 +451,7 @@ Returns \"  ?  \" if there's bad input or if an other error occurs.
 Input should look like this: \"Sun, 14 Oct 2001 13:34:39 +0200\"."
   (condition-case ()
       (let* ((messy-date (gnus-float-time (safe-date-to-time messy-date)))
-            (now (gnus-float-time (current-time)))
+            (now (gnus-float-time))
             ;;If we don't find something suitable we'll use this one
             (my-format "%b %d '%y"))
        (let* ((difference (- now messy-date))