diff options
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, | |||
| 1729 | DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0, | 1729 | DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0, |
| 1730 | doc: /* Return window containing coordinates X and Y on FRAME. | 1730 | doc: /* Return window containing coordinates X and Y on FRAME. |
| 1731 | FRAME must be a live frame and defaults to the selected one. | 1731 | FRAME must be a live frame and defaults to the selected one. |
| 1732 | The top left corner of the frame is considered to be row 0, | 1732 | X and Y are measured in units of canonical columns and rows. |
| 1733 | column 0. */) | 1733 | The top left corner of the frame is considered to be column 0, row 0. |
| 1734 | Tool-bar and tab-bar pseudo-windows are ignored by this function: if | ||
| 1735 | the specified coordinates are in any of these two windows, this | ||
| 1736 | function returns nil. */) | ||
| 1734 | (Lisp_Object x, Lisp_Object y, Lisp_Object frame) | 1737 | (Lisp_Object x, Lisp_Object y, Lisp_Object frame) |
| 1735 | { | 1738 | { |
| 1736 | struct frame *f = decode_live_frame (frame); | 1739 | struct frame *f = decode_live_frame (frame); |