diff options
| author | Eli Zaretskii | 2017-02-25 10:40:13 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-02-25 10:40:13 +0200 |
| commit | eed96776b1e8640cf6f77e8e3a3247dc4fa8a305 (patch) | |
| tree | 9a92d791aedc35bd3f573be93cae93787b481bf9 | |
| parent | 0d5957ec6f10d2ab8eeaafb48eb032e8315aaff3 (diff) | |
| download | emacs-eed96776b1e8640cf6f77e8e3a3247dc4fa8a305.tar.gz emacs-eed96776b1e8640cf6f77e8e3a3247dc4fa8a305.zip | |
Fix doc string of 'posn-at-point'
* src/keyboard.c (Fposn_at_point): Clarify the doc string.
(Bug#25796)
| -rw-r--r-- | src/keyboard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index a772a6b6784..3b6108bc99e 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -10705,13 +10705,13 @@ The `posn-' functions access elements of such lists. */) | |||
| 10705 | } | 10705 | } |
| 10706 | 10706 | ||
| 10707 | DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0, | 10707 | DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0, |
| 10708 | doc: /* Return position information for buffer POS in WINDOW. | 10708 | doc: /* Return position information for buffer position POS in WINDOW. |
| 10709 | POS defaults to point in WINDOW; WINDOW defaults to the selected window. | 10709 | POS defaults to point in WINDOW; WINDOW defaults to the selected window. |
| 10710 | 10710 | ||
| 10711 | Return nil if position is not visible in window. Otherwise, | 10711 | Return nil if POS is not visible in WINDOW. Otherwise, |
| 10712 | the return value is similar to that returned by `event-start' for | 10712 | the return value is similar to that returned by `event-start' for |
| 10713 | a mouse click at the upper left corner of the glyph corresponding | 10713 | a mouse click at the upper left corner of the glyph corresponding |
| 10714 | to the given buffer position: | 10714 | to the POS: |
| 10715 | (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW) | 10715 | (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW) |
| 10716 | IMAGE (DX . DY) (WIDTH . HEIGHT)) | 10716 | IMAGE (DX . DY) (WIDTH . HEIGHT)) |
| 10717 | The `posn-' functions access elements of such lists. */) | 10717 | The `posn-' functions access elements of such lists. */) |