Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
27806b20
Commit
27806b20
authored
Jan 26, 2006
by
Károly Lőrentey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fbeginning_of_line, Fend_of_line): Clarify confusing doc string.
parent
34b87689
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
src/cmds.c
src/cmds.c
+12
-11
No files found.
src/cmds.c
View file @
27806b20
...
...
@@ -157,13 +157,13 @@ DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, 0, 1, "p",
With argument N not nil or 1, move forward N - 1 lines first.
If point reaches the beginning or end of buffer, it stops there.
This
command
does not move point across a field boundary unless
doing so
would move
beyond there
to a different line
; If N is nil or 1, and point
starts at a field boundary, point does not move. To ignore field
boundaries, either bind `inhibit-field-text-motion' to t, or use the
`
forward-line' function instead. For instance,
`
(
forward-line
0)' does
the same thing as `(beginning-of-line)', except that it ignores field
boundaries. */
)
This
function
does not move point across a field boundary unless
that
would move
point
to a different line
than the original, unconstrained
result. If N is nil or 1, and a front-sticky field starts at point,
the point does not move. To ignore field boundaries bind
`
inhibit-field-text-motion' to t, or use the
`forward-line
' function
instead. For instance, `(forward-line 0)' does the same thing as
`(beginning-of-line)', except that it ignores field
boundaries. */
)
(
n
)
Lisp_Object
n
;
{
...
...
@@ -183,10 +183,11 @@ With argument N not nil or 1, move forward N - 1 lines first.
If point reaches the beginning or end of buffer, it stops there.
To ignore intangibility, bind `inhibit-point-motion-hooks' to t.
This command does not move point across a field boundary unless doing so
would move beyond there to a different line; if N is nil or 1, and
point starts at a field boundary, point does not move. To ignore field
boundaries bind `inhibit-field-text-motion' to t. */
)
This function does not move point across a field boundary unless that
would move point to a different line than the original, unconstrained
result. If N is nil or 1, and a rear-sticky field ends at point,
the point does not move. To ignore field boundaries bind
`inhibit-field-text-motion' to t. */
)
(
n
)
Lisp_Object
n
;
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment