summaryrefslogtreecommitdiff
path: root/devdocs/elisp/moving-markers.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/moving-markers.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/elisp/moving-markers.html')
-rw-r--r--devdocs/elisp/moving-markers.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/devdocs/elisp/moving-markers.html b/devdocs/elisp/moving-markers.html
deleted file mode 100644
index f6041624..00000000
--- a/devdocs/elisp/moving-markers.html
+++ /dev/null
@@ -1,23 +0,0 @@
- <h3 class="section">Moving Marker Positions</h3> <p>This section describes how to change the position of an existing marker. When you do this, be sure you know whether the marker is used outside of your program, and, if so, what effects will result from moving it—otherwise, confusing things may happen in other parts of Emacs. </p> <dl> <dt id="set-marker">Function: <strong>set-marker</strong> <em>marker position &amp;optional buffer</em>
-</dt> <dd>
-<p>This function moves <var>marker</var> to <var>position</var> in <var>buffer</var>. If <var>buffer</var> is not provided, it defaults to the current buffer. </p> <p>If <var>position</var> is <code>nil</code> or a marker that points nowhere, then <var>marker</var> is set to point nowhere. </p> <p>The value returned is <var>marker</var>. </p> <div class="example"> <pre class="example">(setq m (point-marker))
- ⇒ #&lt;marker at 4714 in markers.texi&gt;
-</pre>
-<pre class="example">(set-marker m 55)
- ⇒ #&lt;marker at 55 in markers.texi&gt;
-</pre>
-<pre class="example">(setq b (get-buffer "foo"))
- ⇒ #&lt;buffer foo&gt;
-</pre>
-<pre class="example">(set-marker m 0 b)
- ⇒ #&lt;marker at 1 in foo&gt;
-</pre>
-</div> </dd>
-</dl> <dl> <dt id="move-marker">Function: <strong>move-marker</strong> <em>marker position &amp;optional buffer</em>
-</dt> <dd><p>This is another name for <code>set-marker</code>. </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/Moving-Markers.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Moving-Markers.html</a>
- </p>
-</div>