mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(list-colors-duplicates): w32-default-color-map is a function.
This commit is contained in:
parent
973e784949
commit
c3f9cd4661
@ -1,3 +1,8 @@
|
||||
2009-04-18 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* facemenu.el (list-colors-duplicates): w32-default-color-map is
|
||||
a function (Bug#3044).
|
||||
|
||||
2009-04-18 ARISAWA Akihiro <ari@mbf.ocn.ne.jp>
|
||||
|
||||
* epa-file.el (epa-file-decode-and-insert): Use
|
||||
|
@ -537,8 +537,8 @@ a list of colors that the current display can handle."
|
||||
(l list))
|
||||
(while (cdr l)
|
||||
(if (and (facemenu-color-equal (car (car l)) (car (car (cdr l))))
|
||||
(not (if (boundp 'w32-default-color-map)
|
||||
(not (assoc (car (car l)) w32-default-color-map)))))
|
||||
(not (if (fboundp 'w32-default-color-map)
|
||||
(not (assoc (car (car l)) (w32-default-color-map))))))
|
||||
(progn
|
||||
(setcdr (car l) (cons (car (car (cdr l))) (cdr (car l))))
|
||||
(setcdr l (cdr (cdr l))))
|
||||
|
Loading…
Reference in New Issue
Block a user