emacs-devel
[Top][All Lists]
Advanced

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

Small frameset bug


From: JD Smith
Subject: Small frameset bug
Date: Mon, 3 Feb 2020 09:55:48 -0500

In `frameset--minibufferless-last-p`, the destructuring statements:

(pcase-let ((`(,hasmini1 ,id-def1) (assq 'frameset--mini (car state1)))
              (`(,hasmini2 ,id-def2) (assq 'frameset--mini (car state2))))

do not function as intended.  Since the `assq` always produces ‘frameset—mini` 
as its car, hasmini1/2 are always set to this symbol. The subsequent `cond` 
still works as intended to sort minibufferless frames last:

    (cond ((eq id-def1 t) t)
          ((eq id-def2 t) nil)
          ((not (eq hasmini1 hasmini2)) (eq hasmini1 t))
          ((eq hasmini1 nil) (or id-def1 id-def2))
          (t t))))

but the 3rd and 4th conditions are never met.  This may cause confusion for 
anyone trying to use the ‘frameset—mini frame parameter.


reply via email to

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