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/kill-ring-concepts.html | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 devdocs/elisp/kill-ring-concepts.html (limited to 'devdocs/elisp/kill-ring-concepts.html') diff --git a/devdocs/elisp/kill-ring-concepts.html b/devdocs/elisp/kill-ring-concepts.html deleted file mode 100644 index 46d3e963..00000000 --- a/devdocs/elisp/kill-ring-concepts.html +++ /dev/null @@ -1,8 +0,0 @@ -

Kill Ring Concepts

The kill ring records killed text as strings in a list, most recent first. A short kill ring, for example, might look like this:

("some text" "a different piece of text" "even older text")
-
-

When the list reaches kill-ring-max entries in length, adding a new entry automatically deletes the last entry.

When kill commands are interwoven with other commands, each kill command makes a new entry in the kill ring. Multiple kill commands in succession build up a single kill ring entry, which would be yanked as a unit; the second and subsequent consecutive kill commands add text to the entry made by the first one.

For yanking, one entry in the kill ring is designated the front of the ring. Some yank commands rotate the ring by designating a different element as the front. But this virtual rotation doesn’t change the list itself—the most recent entry always comes first in the list.

-

- 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/Kill-Ring-Concepts.html -

-
-- cgit v1.2.3