summaryrefslogtreecommitdiff
path: root/devdocs/elisp/information-from-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/information-from-markers.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/elisp/information-from-markers.html')
-rw-r--r--devdocs/elisp/information-from-markers.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/devdocs/elisp/information-from-markers.html b/devdocs/elisp/information-from-markers.html
deleted file mode 100644
index a1d596c4..00000000
--- a/devdocs/elisp/information-from-markers.html
+++ /dev/null
@@ -1,30 +0,0 @@
- <h3 class="section">Information from Markers</h3> <p>This section describes the functions for accessing the components of a marker object. </p> <dl> <dt id="marker-position">Function: <strong>marker-position</strong> <em>marker</em>
-</dt> <dd><p>This function returns the position that <var>marker</var> points to, or <code>nil</code> if it points nowhere. </p></dd>
-</dl> <dl> <dt id="marker-buffer">Function: <strong>marker-buffer</strong> <em>marker</em>
-</dt> <dd>
-<p>This function returns the buffer that <var>marker</var> points into, or <code>nil</code> if it points nowhere. </p> <div class="example"> <pre class="example">(setq m (make-marker))
- ⇒ #&lt;marker in no buffer&gt;
-</pre>
-<pre class="example">(marker-position m)
- ⇒ nil
-</pre>
-<pre class="example">(marker-buffer m)
- ⇒ nil
-</pre>
-
-<pre class="example">(set-marker m 3770 (current-buffer))
- ⇒ #&lt;marker at 3770 in markers.texi&gt;
-</pre>
-<pre class="example">(marker-buffer m)
- ⇒ #&lt;buffer markers.texi&gt;
-</pre>
-<pre class="example">(marker-position m)
- ⇒ 3770
-</pre>
-</div> </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/Information-from-Markers.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Information-from-Markers.html</a>
- </p>
-</div>