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

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

bug#65217: 29.1; set-frame-size gets confused and drops calls


From: Gregory Heytings
Subject: bug#65217: 29.1; set-frame-size gets confused and drops calls
Date: Fri, 18 Aug 2023 13:26:04 +0000


Ash, can you please try the following variant of your recipe? Does it do what you want?

(setq my/frame
      (make-frame `((left . 500)
                    (top . 5)
                    (width . 20)
                    (height . 20)
                    (parent-frame . ,(selected-frame)))))

(defun my/twiddle (width height)
  (set-frame-size my/frame 10 10)
  (redisplay t)
  (set-frame-size my/frame width height)
  (redisplay t)
  (message (format "%s %s" (frame-width my/frame) (frame-height my/frame))))






reply via email to

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