; (completion-preview--bg-color): Fix bug#75544.
* lisp/completion-preview.el (completion-preview--bg-color): Fix loop check.
This commit is contained in:
parent
e6ad99e36c
commit
0226d35794
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ Completion Preview mode avoids updating the preview after these commands.")
|
|||
(dolist (face (if (face-list-p spec) spec (list spec)))
|
||||
(let (cur)
|
||||
(if (and (setq cur (alist-get face face-remapping-alist))
|
||||
(not (memq cur trace)))
|
||||
(not (memq face trace)))
|
||||
(rec cur (cons face trace))
|
||||
(cond ((and face (symbolp face))
|
||||
(let ((value (face-attribute face :background nil t)))
|
||||
|
|
Loading…
Add table
Reference in a new issue