Use color-values instead of x-color-values
* exwm-core.el (exwm--color->pixel): Use `color-values` (introduced in Emacs 21) instead of `x-color-values` (deprecated in Emacs 30).
This commit is contained in:
parent
089e0c8683
commit
0e365a0058
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ If FRAME is null, use selected frame."
|
|||
"Convert COLOR to PIXEL (index in TrueColor colormap)."
|
||||
(when (and color
|
||||
(eq (x-display-visual-class) 'true-color))
|
||||
(let ((rgb (x-color-values color)))
|
||||
(let ((rgb (color-values color)))
|
||||
(logior (ash (ash (pop rgb) -8) 16)
|
||||
(ash (ash (pop rgb) -8) 8)
|
||||
(ash (pop rgb) -8)))))
|
||||
|
|
Loading…
Reference in a new issue