]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp_time_argument): Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Thu, 27 Jul 2000 14:25:35 +0000 (14:25 +0000)
committerEli Zaretskii <eliz@gnu.org>
Thu, 27 Jul 2000 14:25:35 +0000 (14:25 +0000)
src/ChangeLog
src/editfns.c

index ecfe6bee27a862e6b7d1b22a3d8b415858ae6da0..6daf32dea4542131983beb1b0c19877ccfd4806f 100644 (file)
@@ -1,3 +1,7 @@
+2000-07-27  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * editfns.c (lisp_time_argument): Fix last change.
+
 2000-07-27  Gerd Moellmann  <gerd@gnu.org>
 
        * fns.c (Qkey_or_value, Qkey_and_value): New variables.
index a8e5b5594eded52ec3986916a363de4391918f6b..10a52ca2ee63f73057cdfe170c806a4145b7bbfc 100644 (file)
@@ -1202,8 +1202,7 @@ lisp_time_argument (specified_time, result, usec)
         {
           EMACS_TIME t;
 
-          if (-1 == EMACS_GET_TIME (t))
-            return 0;
+          EMACS_GET_TIME (t);
           *usec = EMACS_USECS (t);
           *result = EMACS_SECS (t);
           return 1;