summaryrefslogtreecommitdiff
path: root/devdocs/elisp/buffer-end-motion.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/elisp/buffer-end-motion.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/elisp/buffer-end-motion.html')
-rw-r--r--devdocs/elisp/buffer-end-motion.html18
1 files changed, 0 insertions, 18 deletions
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 @@
- <h4 class="subsection">Motion to an End of the Buffer</h4> <p>To move point to the beginning of the buffer, write: </p> <div class="example"> <pre class="example">(goto-char (point-min))
-</pre>
-</div> <p>Likewise, to move to the end of the buffer, use: </p> <div class="example"> <pre class="example">(goto-char (point-max))
-</pre>
-</div> <p>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. </p> <dl> <dt id="beginning-of-buffer">Command: <strong>beginning-of-buffer</strong> <em>&amp;optional n</em>
-</dt> <dd>
-<p>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.) </p> <p>If <var>n</var> is non-<code>nil</code>, then it puts point <var>n</var> tenths of the way from the beginning of the accessible portion of the buffer. In an interactive call, <var>n</var> is the numeric prefix argument, if provided; otherwise <var>n</var> defaults to <code>nil</code>. </p> <p><strong>Warning:</strong> Don’t use this function in Lisp programs! </p>
-</dd>
-</dl> <dl> <dt id="end-of-buffer">Command: <strong>end-of-buffer</strong> <em>&amp;optional n</em>
-</dt> <dd>
-<p>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 <var>n</var> is non-<code>nil</code>, then it puts point <var>n</var> tenths of the way from the end of the accessible portion of the buffer. </p> <p>In an interactive call, <var>n</var> is the numeric prefix argument, if provided; otherwise <var>n</var> defaults to <code>nil</code>. </p> <p><strong>Warning:</strong> Don’t use this function in Lisp programs! </p>
-</dd>
-</dl><div class="_attribution">
- <p class="_attribution-p">
- Copyright &copy; 1990-1996, 1998-2022 Free Software Foundation, Inc. <br>Licensed under the GNU GPL license.<br>
- <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Buffer-End-Motion.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Buffer-End-Motion.html</a>
- </p>
-</div>