all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: David Engster <deng@randomsample.de>
To: help-gnu-emacs@gnu.org
Subject: Re: delete-region - is their a way to get the deleted text?
Date: Thu, 13 Jun 2013 18:16:38 +0200	[thread overview]
Message-ID: <87wqpyc7fd.fsf@arcor.de> (raw)
In-Reply-To: 87wqpys8d8.fsf@gmail.com

Thorsten Jolitz writes:
> I found a function that would be useful for me as is - if only I would
> have access to the region deleted with 'delete-region' inside that
> function.
>
> ,------------------------------------------------------------------
> | (delete-region START END)
> | Delete the text between START and END.
> | This command deletes buffer text without modifying the kill ring.
> `------------------------------------------------------------------
>
> If its not in the kill ring - is there any other way to get the text
> that deleted, or is it simply gone and lost?

Well, there's always the super-hacky way:

(require 'cl)

(defadvice your-function-of-interest
  (around replace-delete-with-kill activate)
  "Replace `delete-region' with `kill-region'."
  (flet ((delete-region (x y)
			(kill-region x y)))
    ad-do-it))

And then just yank...

-David




  parent reply	other threads:[~2013-06-13 16:16 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-13  8:49 delete-region - is their a way to get the deleted text? Thorsten Jolitz
2013-06-13  8:56 ` Peter Dyballa
2013-06-13  9:25 ` Eric Abrahamsen
2013-06-13 10:00   ` Peter Dyballa
2013-06-13 10:20     ` Thorsten Jolitz
2013-06-13 10:23     ` Eric Abrahamsen
     [not found]   ` <mailman.1532.1371117614.22516.help-gnu-emacs@gnu.org>
2013-06-13 13:33     ` Barry Margolin
2013-06-13 18:31       ` Peter Dyballa
     [not found]       ` <mailman.1597.1371148312.22516.help-gnu-emacs@gnu.org>
2013-06-13 18:51         ` Barry Margolin
2013-06-13 19:41           ` Peter Dyballa
     [not found]           ` <mailman.1599.1371152513.22516.help-gnu-emacs@gnu.org>
2013-06-13 21:08             ` Barry Margolin
2013-06-13 23:00               ` Peter Dyballa
2013-06-14  8:15                 ` Thorsten Jolitz
2013-06-14  8:37                   ` Peter Dyballa
2013-06-13 16:16 ` David Engster [this message]
2013-06-14  8:20   ` Thorsten Jolitz
     [not found] <mailman.1524.1371113397.22516.help-gnu-emacs@gnu.org>
2013-06-13 15:11 ` Stefan Monnier
2013-06-14  8:18   ` Thorsten Jolitz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87wqpyc7fd.fsf@arcor.de \
    --to=deng@randomsample.de \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.