diff options
| author | Po Lu | 2025-03-10 11:31:50 +0800 |
|---|---|---|
| committer | Po Lu | 2025-03-10 11:31:50 +0800 |
| commit | d343a80e6e1854ffdbea1378f0bc4f836fd01ea4 (patch) | |
| tree | 0a5dee6e5d144d8070315f9e5a3c32019f59bdd0 | |
| parent | 02681b0fbf02913cd474e082f67649f14115e4a6 (diff) | |
| download | emacs-d343a80e6e1854ffdbea1378f0bc4f836fd01ea4.tar.gz emacs-d343a80e6e1854ffdbea1378f0bc4f836fd01ea4.zip | |
; Fix function declarations in frame.el
* lisp/frame.el (widget-field-text-end, widget-field-start)
(widget-get): Correct function declarations.
| -rw-r--r-- | lisp/frame.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 3eccb9a5848..cf8aff826c1 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -94,8 +94,9 @@ handles the corresponding kind of display.") | |||
| 94 | "vertical-scroll-bars" "visibility" "wait-for-wm" "width" "z-group") | 94 | "vertical-scroll-bars" "visibility" "wait-for-wm" "width" "z-group") |
| 95 | "List of special frame parameters that makes sense to customize.") | 95 | "List of special frame parameters that makes sense to customize.") |
| 96 | 96 | ||
| 97 | (declare-function "widget-field-text-end" "wid-edit") | 97 | (declare-function widget-field-text-end "wid-edit") |
| 98 | (declare-function "widget-field-start" "wid-edit") | 98 | (declare-function widget-field-start "wid-edit") |
| 99 | (declare-function widget-get "wid-edit") | ||
| 99 | 100 | ||
| 100 | (defun frame--complete-parameter-value (widget) | 101 | (defun frame--complete-parameter-value (widget) |
| 101 | "Provide completion for WIDGET, which holds frame parameter's values." | 102 | "Provide completion for WIDGET, which holds frame parameter's values." |