Fix regression due to change in face sort order by 'face-list'
* lisp/faces.el (x-create-frame-with-faces): Undo reversing of the face list, which is no longer necessary, since 'face-list's sorting order has been reversed recently. (Bug#61521)
This commit is contained in:
@@ -2226,7 +2226,7 @@ the X resource \"reverseVideo\" is present, handle that."
|
||||
(unwind-protect
|
||||
(progn
|
||||
(x-setup-function-keys frame)
|
||||
(dolist (face (nreverse (face-list)))
|
||||
(dolist (face (face-list))
|
||||
(face-spec-recalc face frame))
|
||||
(x-handle-reverse-video frame parameters)
|
||||
(frame-set-background-mode frame t)
|
||||
|
||||
Reference in New Issue
Block a user