branch: externals/corfu-doc
commit 616a2a9fc6fb3222ea2273435ddbc63eba72670d
Author: Yuwei Tian <[email protected]>
Commit: Yuwei Tian <[email protected]>
Fix regression error when scrolling doc popup
---
corfu-doc.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/corfu-doc.el b/corfu-doc.el
index 302734c20a..e92b58c784 100644
--- a/corfu-doc.el
+++ b/corfu-doc.el
@@ -546,7 +546,7 @@ See `scroll-up' for details."
(get-buffer " *corfu-doc*"))))
(with-selected-frame corfu-doc--frame
(with-current-buffer cf-doc-buf
- (apply #'scroll-up n)))))
+ (funcall #'scroll-up n)))))
;;;###autoload
(defun corfu-doc-scroll-up (&optional n)