[gnus git] branch master updated: m0-13-71-gb094ace =1= time-date.el (time-to-seconds, time-less-p): Mark unused vars with underscore
Katsumi Yamaoka <[email protected]> Thu, 10 Sep 2015 00:32:39 +0200
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via b094acedc8f1bea034535fb457765d03d4a310a9 (commit)
from 00fbe7e7f11942c2d26e357f0316e4f9605c325a (commit)
- Log -----------------------------------------------------------------
commit b094acedc8f1bea034535fb457765d03d4a310a9
Author: Stefan Monnier <[email protected]>
Date: Wed Sep 9 22:32:29 2015 +0000
time-date.el (time-to-seconds, time-less-p): Mark unused vars with underscore
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e3782bf..41d390b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2015-09-09 Stefan Monnier <[email protected]>
+
+ * time-date.el (time-to-seconds, time-less-p):
+ Mark unused vars with underscore.
+
2015-09-08 Stefan Monnier <[email protected]>
* time-date.el (with-decoded-time-value): Fix debug spec.
diff --git a/lisp/time-date.el b/lisp/time-date.el
index f30bea8..2c64645 100644
--- a/lisp/time-date.el
+++ b/lisp/time-date.el
@@ -179,7 +179,7 @@ If DATE lacks timezone information, GMT is assumed."
(defun time-to-seconds (&optional time)
"Convert optional value TIME to a floating point number.
TIME defaults to the current time."
- (with-decoded-time-value ((high low micro pico type
+ (with-decoded-time-value ((high low micro pico _type
(or time (current-time))))
(+ (* high 65536.0)
low
@@ -262,8 +262,8 @@ Return the difference in the format of a time value."
(defun time-less-p (t1 t2)
"Return non-nil if time value T1 is earlier than time value T2."
- (with-decoded-time-value ((high1 low1 micro1 pico1 type1 t1)
- (high2 low2 micro2 pico2 type2 t2))
+ (with-decoded-time-value ((high1 low1 micro1 pico1 _type1 t1)
+ (high2 low2 micro2 pico2 _type2 t2))
(or (< high1 high2)
(and (= high1 high2)
(or (< low1 low2)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/time-date.el | 6 +++---
2 files changed, 8 insertions(+), 3 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project