summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNoam Postavsky <npostavs@gmail.com>2020-08-21 15:08:27 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2020-08-21 15:08:27 +0200
commit9d4b11132b7fb45a5804161e16cb9b71b7ac7d5d (patch)
tree3989f2bc957ec5d19eeba0247a8c7fda5aed3da1 /src
parent9c62ffb08262c82b7e38e6eb5767f2087424aa47 (diff)
downloademacs-9d4b11132b7fb45a5804161e16cb9b71b7ac7d5d.tar.gz
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.c3
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.
This function ignores text display directionality; it returns the
position of the first character in logical order, i.e. the smallest
-character position on the line.
+character position on the logical line. See `vertical-motion' for
+movement by screen lines.
This function constrains the returned position to the current field
unless that position would be on a different line from the original,