; Fix function declarations in frame.el

* lisp/frame.el (widget-field-text-end, widget-field-start)
(widget-get): Correct function declarations.
This commit is contained in:
Po Lu 2025-03-10 11:31:50 +08:00
parent 02681b0fbf
commit d343a80e6e

View file

@ -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."