[gnus git] branch master updated: m0-5-165-ga37c5ae =1= Merge changes made in Emacs trunk
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via a37c5ae47930c15eb3e526bc608ca464dbb19808 (commit)
from 52c9fb519860132aa3c0f7f58b2f39290f6901f1 (commit)
- Log -----------------------------------------------------------------
commit a37c5ae47930c15eb3e526bc608ca464dbb19808
Author: Stefan Monnier <[email protected]>
Date: Mon Nov 19 22:11:15 2012 +0000
Merge changes made in Emacs trunk
* color.el: Don't require cl.
(color-complement): `caddr' -> `nth 2'.
* time-date.el (time-to-seconds): De-obsolete.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 07f5475..d5b615d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
+2012-11-19 Stefan Monnier <[email protected]>
+
+ * color.el: Don't require cl.
+ (color-complement): `caddr' -> `nth 2'.
+
+ * time-date.el (time-to-seconds): De-obsolete.
+
2012-11-19 Katsumi Yamaoka <[email protected]>
* message.el (message-get-reply-headers):
diff --git a/lisp/color.el b/lisp/color.el
index 843c12f..baa6c27 100644
--- a/lisp/color.el
+++ b/lisp/color.el
@@ -33,9 +33,6 @@
;;; Code:
-(eval-when-compile
- (require 'cl))
-
;; Emacs < 23.3
(eval-and-compile
(unless (boundp 'float-pi)
@@ -69,9 +66,9 @@ RED, GREEN, and BLUE should be numbers between 0.0 and 1.0, inclusive."
COLOR-NAME should be a string naming a color (e.g. \"white\"), or
a string specifying a color's RGB components (e.g. \"#ff12ec\")."
(let ((color (color-name-to-rgb color-name)))
- (list (- 1.0 (car color))
- (- 1.0 (cadr color))
- (- 1.0 (caddr color)))))
+ (list (- 1.0 (nth 0 color))
+ (- 1.0 (nth 1 color))
+ (- 1.0 (nth 2 color)))))
(defun color-gradient (start stop step-number)
"Return a list with STEP-NUMBER colors from START to STOP.
diff --git a/lisp/time-date.el b/lisp/time-date.el
index 38b7660..b953a6f 100644
--- a/lisp/time-date.el
+++ b/lisp/time-date.el
@@ -134,9 +134,7 @@ If DATE lacks timezone information, GMT is assumed."
;;;###autoload(if (or (featurep 'emacs)
;;;###autoload (and (fboundp 'float-time)
;;;###autoload (subrp (symbol-function 'float-time))))
-;;;###autoload (progn
;;;###autoload (defalias 'time-to-seconds 'float-time)
-;;;###autoload (make-obsolete 'time-to-seconds 'float-time "21.1"))
;;;###autoload (autoload 'time-to-seconds "time-date"))
(eval-when-compile
-----------------------------------------------------------------------
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 | 7 +++++++
lisp/color.el | 9 +++------
lisp/time-date.el | 4 +---
3 files changed, 11 insertions(+), 9 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