diff options
| author | Mattias EngdegÄrd | 2022-08-21 15:56:26 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-08-21 16:18:03 +0200 |
| commit | 563ec6abc4f194eb8d89cc2f5adefb7f68017149 (patch) | |
| tree | 102ea6cd6dd6840dbca06f4e9f485d9a1ea947b5 /src | |
| parent | f57297c8b2344d822fcf56fb3fc3b543e1e747bf (diff) | |
| download | emacs-563ec6abc4f194eb8d89cc2f5adefb7f68017149.tar.gz emacs-563ec6abc4f194eb8d89cc2f5adefb7f68017149.zip | |
; Complete renaming to pos-bol and pos-eol
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index febc9f8fdaa..cd5cddee79f 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -748,7 +748,7 @@ This function does not move point. Also see `line-beginning-position'. */) | |||
| 748 | DEFUN ("line-beginning-position", | 748 | DEFUN ("line-beginning-position", |
| 749 | Fline_beginning_position, Sline_beginning_position, 0, 1, 0, | 749 | Fline_beginning_position, Sline_beginning_position, 0, 1, 0, |
| 750 | doc: /* Return the position of the first character in the current line/field. | 750 | doc: /* Return the position of the first character in the current line/field. |
| 751 | This function is like `bol' (which see), but respects fields. | 751 | This function is like `pos-bol' (which see), but respects fields. |
| 752 | 752 | ||
| 753 | This function constrains the returned position to the current field | 753 | This function constrains the returned position to the current field |
| 754 | unless that position would be on a different line from the original, | 754 | unless that position would be on a different line from the original, |
| @@ -804,7 +804,7 @@ DEFUN ("line-end-position", Fline_end_position, Sline_end_position, 0, 1, 0, | |||
| 804 | With argument N not nil or 1, move forward N - 1 lines first. | 804 | With argument N not nil or 1, move forward N - 1 lines first. |
| 805 | If scan reaches end of buffer, return that position. | 805 | If scan reaches end of buffer, return that position. |
| 806 | 806 | ||
| 807 | This function is like `eol' (which see), but respects fields. | 807 | This function is like `pos-eol' (which see), but respects fields. |
| 808 | 808 | ||
| 809 | This function constrains the returned position to the current field | 809 | This function constrains the returned position to the current field |
| 810 | unless that would be on a different line from the original, | 810 | unless that would be on a different line from the original, |