summaryrefslogtreecommitdiff
path: root/corfu.el
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2025-12-22 11:50:54 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2025-12-22 11:50:54 +0100
commit4be939efc6e40b3c028167343b930faf6017a555 (patch)
tree0fa7eed624f651791f9c1b09f1a288b3f0c4805a /corfu.el
parentdb99669e74a3fd171adef4c8db1e661858511b7f (diff)
Update changelog
Diffstat (limited to 'corfu.el')
-rw-r--r--corfu.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/corfu.el b/corfu.el
index d3c0267..2c31ff6 100644
--- a/corfu.el
+++ b/corfu.el
@@ -543,8 +543,7 @@ FRAME is the existing frame."
(pcase-let ((`(,px . ,py) (frame-position frame)))
(cond
((and (= x px) (= y py)) (set-frame-size frame width height t))
- ;; NOTE: Experimental new Emacs 31 addition by Martin Rudalics.
- ;; https://lists.gnu.org/archive/html/emacs-devel/2025-12/msg00414.html
+ ;; New Emacs 31 function for faster resizing/movement in one go.
((fboundp 'set-frame-size-and-position-pixelwise)
(set-frame-size-and-position-pixelwise frame width height x y))
(t (set-frame-size frame width height t)