branch: externals/corfu
commit 7de90521c819d0f6e28c2713eb37bfb0aa2c216b
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Update link to patch
---
CHANGELOG.org | 2 +-
corfu.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.org b/CHANGELOG.org
index f00862f72d..30b7464293 100644
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -10,7 +10,7 @@
- Work around Emacs bug#79792, where the ~*Help*~ buffer is replaced
unexpectedly.
- Experimental: Use new function =set-frame-size-and-position-pixelwise= if
available. The patch can be downloaded from here:
- https://lists.gnu.org/archive/html/emacs-devel/2025-12/msg00359.html
+ https://lists.gnu.org/archive/html/emacs-devel/2025-12/msg00414.html
* Version 2.6 (2025-12-07)
diff --git a/corfu.el b/corfu.el
index 260c2d7a41..d72852d2c4 100644
--- a/corfu.el
+++ b/corfu.el
@@ -548,7 +548,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-12/msg00359.html
+ ;; https://lists.gnu.org/archive/html/emacs-devel/2025-12/msg00414.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)