[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Make window-list return windows for all frames
From: |
martin rudalics |
Subject: |
Re: Make window-list return windows for all frames |
Date: |
Fri, 16 Jun 2023 16:21:54 +0200 |
>> Yes, window-list and window-list-1 becaomes the same, just with arguments in
>> different order. Could even remove c version of window-list, and implement
it as
>> a call to window-list-1. Less code, less maintanance.
>
> Martin, are there any reason we'd not want window-list to accept t as
> the FRAME argument?
None on my side. The current implementation of 'window-list' simply
throws an error for (window-list t). Back then I made 'window-list-1' a
separate function because with
(defvar frame-1 (selected-frame))
(defvar window-2 (frame-root-window (make-frame)))
calling
(window-list frame-1 nil window-2)
complains while
(window-list-1 window-2 nil frame-1)
doesn't. People were picky about such issues in the past.
martin
- Make window-list return windows for all frames, Arthur Miller, 2023/06/15
- Re: Make window-list return windows for all frames, Eli Zaretskii, 2023/06/15
- Re: Make window-list return windows for all frames, Arthur Miller, 2023/06/15
- Re: Make window-list return windows for all frames, Eli Zaretskii, 2023/06/15
- Re: Make window-list return windows for all frames, Arthur Miller, 2023/06/16
- Re: Make window-list return windows for all frames, Gregory Heytings, 2023/06/16
- Re: Make window-list return windows for all frames, Arthur Miller, 2023/06/16
- Re: Make window-list return windows for all frames, Eli Zaretskii, 2023/06/16
- Re: Make window-list return windows for all frames,
martin rudalics <=
- Re: Make window-list return windows for all frames, Eli Zaretskii, 2023/06/17
- Re: Make window-list return windows for all frames, martin rudalics, 2023/06/17
- Re: Make window-list return windows for all frames, Eli Zaretskii, 2023/06/17
- Re: Make window-list return windows for all frames, Arthur Miller, 2023/06/18
- Re: Make window-list return windows for all frames, Arthur Miller, 2023/06/19
- Re: Make window-list return windows for all frames, martin rudalics, 2023/06/20
- Re: Make window-list return windows for all frames, Arthur Miller, 2023/06/27
- RE: [External] : Re: Make window-list return windows for all frames, Drew Adams, 2023/06/15
- Re: [External] : Re: Make window-list return windows for all frames, Arthur Miller, 2023/06/16
Re: Make window-list return windows for all frames, Gregory Heytings, 2023/06/15