Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c3f9cd46
Commit
c3f9cd46
authored
Apr 18, 2009
by
Jason Rumney
Browse files
(list-colors-duplicates): w32-default-color-map is a function.
parent
973e7849
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/facemenu.el
lisp/facemenu.el
+2
-2
No files found.
lisp/ChangeLog
View file @
c3f9cd46
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
...
...
lisp/facemenu.el
View file @
c3f9cd46
...
...
@@ -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
(
f
boundp
'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
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment