aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNoam Postavsky2020-08-21 15:08:27 +0200
committerLars Ingebrigtsen2020-08-21 15:08:27 +0200
commit9d4b11132b7fb45a5804161e16cb9b71b7ac7d5d (patch)
tree3989f2bc957ec5d19eeba0247a8c7fda5aed3da1 /src
parent9c62ffb08262c82b7e38e6eb5767f2087424aa47 (diff)
downloademacs-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.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.
707 707
708This function ignores text display directionality; it returns the 708This function ignores text display directionality; it returns the
709position of the first character in logical order, i.e. the smallest 709position of the first character in logical order, i.e. the smallest
710character position on the line. 710character position on the logical line. See `vertical-motion' for
711movement by screen lines.
711 712
712This function constrains the returned position to the current field 713This function constrains the returned position to the current field
713unless that position would be on a different line from the original, 714unless that position would be on a different line from the original,