bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#29713: 26.0; Provide completion for `make-frame-on-display'


From: Basil L. Contovounesios
Subject: bug#29713: 26.0; Provide completion for `make-frame-on-display'
Date: Wed, 24 Mar 2021 21:57:40 +0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Juri Linkov <juri@linkov.net> writes:

> Maybe fall back to previous implementation replaced by x-display-list
> in 0746a9e275d, i.e.
>
>   (if (fboundp 'x-display-list)
>       (x-display-list)
>     (delete-dups
>      (mapcar (lambda (frame)
>                (frame-parameter frame 'display))
>              (frame-list))))
>
> Does this fail on --without-x builds?

No, but (frame-parameter frame 'display) is always nil, so you still get
practically the same error as with:

  (and (fboundp 'x-display-list)
       (x-display-list))

-- 
Basil





reply via email to

[Prev in Thread] Current Thread [Next in Thread]