branch: externals/corfu
commit d73949b3e1ccada479acea91a11ede393a230166
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Update patch link
---
CHANGELOG.org | 3 ++-
corfu.el | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.org b/CHANGELOG.org
index c8d8942cee..0d10038ea4 100644
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -7,7 +7,8 @@
- corfu-popupinfo: Faster scrolling speed.
- corfu-popupinfo: Fix Emacs 30 deprecation warning.
- Experimental: Use new function =set-frame-size-and-position-pixelwise= if
- available.
+ available. The patch can be downloaded from here:
+ https://lists.gnu.org/archive/html/emacs-devel/2025-12/msg00359.html
* Version 2.6 (2025-12-07)
diff --git a/corfu.el b/corfu.el
index 674b842b32..e160556d12 100644
--- a/corfu.el
+++ b/corfu.el
@@ -540,7 +540,7 @@ FRAME is the existing 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-11/msg00322.html
+ ;; https://lists.gnu.org/archive/html/emacs-devel/2025-12/msg00359.html
((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)