diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-03-04 10:43:25 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-03-04 10:43:25 +0200 |
commit | e0bf2da3db69d074e16ceda3f2b5323f2d22d34b (patch) | |
tree | 6dbdd5189de0d5bebc6b5c7085b723eedee563db /src | |
parent | bd5115e13479b1d81d6aa09efe362ad14d53c3c6 (diff) | |
download | emacs-e0bf2da3db69d074e16ceda3f2b5323f2d22d34b.tar.gz emacs-e0bf2da3db69d074e16ceda3f2b5323f2d22d34b.tar.bz2 emacs-e0bf2da3db69d074e16ceda3f2b5323f2d22d34b.zip |
; More accurate doc strings for 'window-at' and 'window-at-x-y'.
* lisp/window.el (window-at-x-y):
* src/window.c (Fwindow_at): Doc fix. (Bug#61948)
Diffstat (limited to 'src')
-rw-r--r-- | src/window.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c index a94e1d611c7..0efd6813f8d 100644 --- a/src/window.c +++ b/src/window.c @@ -1729,8 +1729,11 @@ window_from_coordinates (struct frame *f, int x, int y, DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0, doc: /* Return window containing coordinates X and Y on FRAME. FRAME must be a live frame and defaults to the selected one. -The top left corner of the frame is considered to be row 0, -column 0. */) +X and Y are measured in units of canonical columns and rows. +The top left corner of the frame is considered to be column 0, row 0. +Tool-bar and tab-bar pseudo-windows are ignored by this function: if +the specified coordinates are in any of these two windows, this +function returns nil. */) (Lisp_Object x, Lisp_Object y, Lisp_Object frame) { struct frame *f = decode_live_frame (frame); |