Re: master 8a88f3ed5ae: Add `outline-occur' command and `display-buffer-default-alist' variable

Stefan Monnier via "Emacs development discussions." <[email protected]> Wed, 12 Aug 2026 15:31:51 -0400
Newsgroups gmane.emacs.devel
Message-ID <[email protected]>
> Do you think it's possible to distinguish
> these two cases in the same variable:
>
> 1. existing:
>    (FUNCTIONS . ALIST)
> 2. new like in 'display-buffer-alist':
>    ((CONDITION-1 FUNCTIONS . ALIST)
>     (CONDITION-2 FUNCTIONS . ALIST)
>     ...)

    ((F1 F2) (F3 F4))

could be

    FUNCTIONS = (F1 F2)
    ALIST = ((F3 . (F4)))

or

    CONDITION-1 = F1
    FUNCTIONS-1 = F2
    ALIST-1 = nil
    CONDITION-2 = F3
    FUNCTIONS-2 = F4
    ALIST-2 = nil


=== Stefan