Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
03deb635
Commit
03deb635
authored
Feb 06, 2005
by
Richard M. Stallman
Browse files
(buffer-end): Doc fix.
parent
7483daa1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
lisp/emacs-lisp/lisp.el
lisp/emacs-lisp/lisp.el
+3
-0
No files found.
lisp/emacs-lisp/lisp.el
View file @
03deb635
...
...
@@ -233,6 +233,9 @@ recipe (see `end-of-defun'). Major modes can define this if the
normal method is not appropriate."
)
(
defun
buffer-end
(
arg
)
"Return the \"far end\" position of the buffer, moving in direction ARG.
If ARG is positive, that's the end of the buffer.
Otherwise, that's the beginning of the buffer."
(
if
(
>
arg
0
)
(
point-max
)
(
point-min
)))
(
defun
end-of-defun
(
&optional
arg
)
...
...
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