]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix function declarations in frame.el
authorPo Lu <luangruo@yahoo.com>
Mon, 10 Mar 2025 03:31:50 +0000 (11:31 +0800)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:53:01 +0000 (19:53 +0100)
* lisp/frame.el (widget-field-text-end, widget-field-start)
(widget-get): Correct function declarations.

(cherry picked from commit d343a80e6e1854ffdbea1378f0bc4f836fd01ea4)

lisp/frame.el

index 7b18558b82de0666bbdf2d093caefa2d2b787af2..39bf80fbc775b0cbe9a3209f8ce3538857e55265 100644 (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."