From: Po Lu Date: Mon, 10 Mar 2025 03:31:50 +0000 (+0800) Subject: ; Fix function declarations in frame.el X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a602dc9b0d97991b86aff7e2cc0f8271c02809d0;p=emacs.git ; Fix function declarations in frame.el * lisp/frame.el (widget-field-text-end, widget-field-start) (widget-get): Correct function declarations. (cherry picked from commit d343a80e6e1854ffdbea1378f0bc4f836fd01ea4) --- diff --git a/lisp/frame.el b/lisp/frame.el index 7b18558b82d..39bf80fbc77 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -94,8 +94,9 @@ handles the corresponding kind of display.") "vertical-scroll-bars" "visibility" "wait-for-wm" "width" "z-group") "List of special frame parameters that makes sense to customize.") -(declare-function "widget-field-text-end" "wid-edit") -(declare-function "widget-field-start" "wid-edit") +(declare-function widget-field-text-end "wid-edit") +(declare-function widget-field-start "wid-edit") +(declare-function widget-get "wid-edit") (defun frame--complete-parameter-value (widget) "Provide completion for WIDGET, which holds frame parameter's values."