diff options
| author | Noam Postavsky | 2020-08-21 15:08:27 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2020-08-21 15:08:27 +0200 |
| commit | 9d4b11132b7fb45a5804161e16cb9b71b7ac7d5d (patch) | |
| tree | 3989f2bc957ec5d19eeba0247a8c7fda5aed3da1 /src | |
| parent | 9c62ffb08262c82b7e38e6eb5767f2087424aa47 (diff) | |
| download | emacs-9d4b11132b7fb45a5804161e16cb9b71b7ac7d5d.tar.gz emacs-9d4b11132b7fb45a5804161e16cb9b71b7ac7d5d.zip | |
Clarify docs about line movement
* doc/lispref/positions.texi (Text Lines, Screen Lines): Add index
entries.
* lisp/simple.el (move-beginning-of-line): Remove incorrect mention of
images, and reference beginning-of-visual-line.
* src/editfns.c (Fline_beginning_position): Reference
`vertical-motion' (bug#35899).
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index cb09ea8a31a..949f3825a3c 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -707,7 +707,8 @@ If the scan reaches the end of the buffer, return that position. | |||
| 707 | 707 | ||
| 708 | This function ignores text display directionality; it returns the | 708 | This function ignores text display directionality; it returns the |
| 709 | position of the first character in logical order, i.e. the smallest | 709 | position of the first character in logical order, i.e. the smallest |
| 710 | character position on the line. | 710 | character position on the logical line. See `vertical-motion' for |
| 711 | movement by screen lines. | ||
| 711 | 712 | ||
| 712 | This function constrains the returned position to the current field | 713 | This function constrains the returned position to the current field |
| 713 | unless that position would be on a different line from the original, | 714 | unless that position would be on a different line from the original, |