From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/buffer-end-motion.html | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 devdocs/elisp/buffer-end-motion.html (limited to 'devdocs/elisp/buffer-end-motion.html') diff --git a/devdocs/elisp/buffer-end-motion.html b/devdocs/elisp/buffer-end-motion.html deleted file mode 100644 index 725c23b9..00000000 --- a/devdocs/elisp/buffer-end-motion.html +++ /dev/null @@ -1,18 +0,0 @@ -

Motion to an End of the Buffer

To move point to the beginning of the buffer, write:

(goto-char (point-min))
-
-

Likewise, to move to the end of the buffer, use:

(goto-char (point-max))
-
-

Here are two commands that users use to do these things. They are documented here to warn you not to use them in Lisp programs, because they set the mark and display messages in the echo area.

Command: beginning-of-buffer &optional n -
-

This function moves point to the beginning of the buffer (or the limits of the accessible portion, when narrowing is in effect), setting the mark at the previous position (except in Transient Mark mode, if the mark is already active, it does not set the mark.)

If n is non-nil, then it puts point n tenths of the way from the beginning of the accessible portion of the buffer. In an interactive call, n is the numeric prefix argument, if provided; otherwise n defaults to nil.

Warning: Don’t use this function in Lisp programs!

-
-
Command: end-of-buffer &optional n -
-

This function moves point to the end of the buffer (or the limits of the accessible portion, when narrowing is in effect), setting the mark at the previous position (except in Transient Mark mode when the mark is already active). If n is non-nil, then it puts point n tenths of the way from the end of the accessible portion of the buffer.

In an interactive call, n is the numeric prefix argument, if provided; otherwise n defaults to nil.

Warning: Don’t use this function in Lisp programs!

-
-
-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Buffer-End-Motion.html -

-
-- cgit v1.2.3