aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/editfns.c b/src/editfns.c
index c3ffd203124..0e034cc76fd 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -805,6 +805,9 @@ DEFUN ("line-beginning-position",
805With argument N not nil or 1, move forward N - 1 lines first. 805With argument N not nil or 1, move forward N - 1 lines first.
806If scan reaches end of buffer, return that position. 806If scan reaches end of buffer, return that position.
807 807
808The returned position is of the first character in the logical order,
809i.e. the one that has the smallest character position.
810
808This function constrains the returned position to the current field 811This function constrains the returned position to the current field
809unless that would be on a different line than the original, 812unless that would be on a different line than the original,
810unconstrained result. If N is nil or 1, and a front-sticky field 813unconstrained result. If N is nil or 1, and a front-sticky field
@@ -843,6 +846,9 @@ DEFUN ("line-end-position", Fline_end_position, Sline_end_position, 0, 1, 0,
843With argument N not nil or 1, move forward N - 1 lines first. 846With argument N not nil or 1, move forward N - 1 lines first.
844If scan reaches end of buffer, return that position. 847If scan reaches end of buffer, return that position.
845 848
849The returned position is of the last character in the logical order,
850i.e. the character whose buffer position is the largest one.
851
846This function constrains the returned position to the current field 852This function constrains the returned position to the current field
847unless that would be on a different line than the original, 853unless that would be on a different line than the original,
848unconstrained result. If N is nil or 1, and a rear-sticky field ends 854unconstrained result. If N is nil or 1, and a rear-sticky field ends