summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2025-12-13 11:49:37 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2025-12-13 11:49:52 +0100
commitd73949b3e1ccada479acea91a11ede393a230166 (patch)
tree4f1a70cbbe9a009147132df4ee84160077f6cbd1
parent79c32295e3813ce3e229c35c571d63e5d6aa0d10 (diff)
Update patch link
-rw-r--r--CHANGELOG.org3
-rw-r--r--corfu.el2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.org b/CHANGELOG.org
index c8d8942..0d10038 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 674b842..e160556 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)