summaryrefslogtreecommitdiff
path: root/devdocs/elisp/buffer-gap.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-gap.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/elisp/buffer-gap.html')
-rw-r--r--devdocs/elisp/buffer-gap.html10
1 files changed, 0 insertions, 10 deletions
diff --git a/devdocs/elisp/buffer-gap.html b/devdocs/elisp/buffer-gap.html
deleted file mode 100644
index 627d5be0..00000000
--- a/devdocs/elisp/buffer-gap.html
+++ /dev/null
@@ -1,10 +0,0 @@
- <h3 class="section">The Buffer Gap</h3> <p>Emacs buffers are implemented using an invisible <em>gap</em> to make insertion and deletion faster. Insertion works by filling in part of the gap, and deletion adds to the gap. Of course, this means that the gap must first be moved to the locus of the insertion or deletion. Emacs moves the gap only when you try to insert or delete. This is why your first editing command in one part of a large buffer, after previously editing in another far-away part, sometimes involves a noticeable delay. </p> <p>This mechanism works invisibly, and Lisp code should never be affected by the gap’s current location, but these functions are available for getting information about the gap status. </p> <dl> <dt id="gap-position">Function: <strong>gap-position</strong>
-</dt> <dd><p>This function returns the current gap position in the current buffer. </p></dd>
-</dl> <dl> <dt id="gap-size">Function: <strong>gap-size</strong>
-</dt> <dd><p>This function returns the current gap size of the current buffer. </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-Gap.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Buffer-Gap.html</a>
- </p>
-</div>