diff options
| author | Eli Zaretskii | 2025-03-04 15:45:33 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2025-03-04 15:45:33 +0200 |
| commit | a382bfdfa4b8692bcb971eec1516e37a58b3fc2f (patch) | |
| tree | f4f95aca801df885466f336eb4fd4166e16cc4c4 /src/term.c | |
| parent | 25e2656dd9246672353c5f635b365005cb0e0546 (diff) | |
| download | emacs-a382bfdfa4b8692bcb971eec1516e37a58b3fc2f.tar.gz emacs-a382bfdfa4b8692bcb971eec1516e37a58b3fc2f.zip | |
Fix 'etc/DOC' for a few functions/variables
* src/term.c (Ftty_frame_at):
* src/menu.c (syms_of_menu) <x-popup-menu-function>:
* src/dispnew.c (Fredisplay): Fix "doc:". The extra blank was
preventing 'make-docfile' from recognizing the functions and
variables and extracting their documentation to 'etc/DOC'.
(Bug#76722)
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index cd4c1f45426..6990978ecfb 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -2673,7 +2673,7 @@ tty_frame_at (int x, int y, int *cx, int *cy) | |||
| 2673 | } | 2673 | } |
| 2674 | 2674 | ||
| 2675 | DEFUN ("tty-frame-at", Ftty_frame_at, Stty_frame_at, 2, 2, 0, | 2675 | DEFUN ("tty-frame-at", Ftty_frame_at, Stty_frame_at, 2, 2, 0, |
| 2676 | doc : /* Return tty frame containing absolute pixel position (X, Y). | 2676 | doc: /* Return tty frame containing absolute pixel position (X, Y). |
| 2677 | Value is nil if no frame found. Otherwise it is a list (FRAME CX CY), | 2677 | Value is nil if no frame found. Otherwise it is a list (FRAME CX CY), |
| 2678 | where FRAME is the frame containing (X, Y) and CX and CY are X and Y | 2678 | where FRAME is the frame containing (X, Y) and CX and CY are X and Y |
| 2679 | relative to FRAME. */) | 2679 | relative to FRAME. */) |