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
8d9f4291
Commit
8d9f4291
authored
Aug 26, 2010
by
Chong Yidong
Browse files
* simple.el (beginning-of-buffer, end-of-buffer): Doc fix (Bug#6907).
parent
9027027d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
10 deletions
+17
-10
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/simple.el
lisp/simple.el
+12
-10
No files found.
lisp/ChangeLog
View file @
8d9f4291
2010-08-26 Chong Yidong <cyd@stupidchicken.com>
* simple.el (beginning-of-buffer, end-of-buffer): Doc fix
(Bug#6907).
2010-08-23 Chris Foote <chris@foote.com.au> (tiny change)
* progmodes/python.el (python-block-pairs): Allow use of "finally"
...
...
lisp/simple.el
View file @
8d9f4291
...
...
@@ -784,15 +784,16 @@ If BACKWARD-ONLY is non-nil, only delete them before point."
(constrain-to-field nil orig-pos t)))))
(defun beginning-of-buffer (&optional arg)
"Move point to the beginning of the buffer; leave mark at previous position.
With \\[universal-argument] prefix, do not set mark at previous position.
"Move point to the beginning of the buffer.
With numeric arg N, put point N/10 of the way from the beginning.
If the buffer is narrowed, this command uses the beginning of the
accessible part of the buffer.
If
the buffer is narrowed, this command uses the beginning and size
of the accessible part of the buffer
.
If
Transient Mark mode is disabled, leave mark at previous
position, unless a \\[universal-argument] prefix is supplied
.
Don't use this command in Lisp programs!
\(goto-char (point-min)) is faster
and avoids clobbering the mark
."
\(goto-char (point-min)) is faster."
(interactive "^P")
(or (consp arg)
(region-active-p)
...
...
@@ -809,15 +810,16 @@ Don't use this command in Lisp programs!
(if (and arg (not (consp arg))) (forward-line 1)))
(defun end-of-buffer (&optional arg)
"Move point to the end of the buffer; leave mark at previous position.
With \\[universal-argument] prefix, do not set mark at previous position.
"Move point to the end of the buffer.
With numeric arg N, put point N/10 of the way from the end.
If the buffer is narrowed, this command uses the end of the
accessible part of the buffer.
If
the buffer is narrowed, this command uses the beginning and size
of the accessible part of the buffer
.
If
Transient Mark mode is disabled, leave mark at previous
position, unless a \\[universal-argument] prefix is supplied
.
Don't use this command in Lisp programs!
\(goto-char (point-max)) is faster
and avoids clobbering the mark
."
\(goto-char (point-max)) is faster."
(interactive "^P")
(or (consp arg) (region-active-p) (push-mark))
(let ((size (- (point-max) (point-min))))
...
...
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