From: Michael Heerdegen <michael_heerdegen@web.de>
To: help-gnu-emacs@gnu.org
Subject: Re: clear-kill-ring function
Date: Wed, 28 Oct 2015 13:46:15 +0100 [thread overview]
Message-ID: <87fv0vduug.fsf@web.de> (raw)
In-Reply-To: d9bmqhFj9rhU1@mid.individual.net
Joost Kremers <joost.m.kremers@gmail.com> writes:
> (defun clear-kill-ring ()
> "Clear the kill ring variable"
> (interactive)
> (setq kill-ring nil))
> (global-set-key (kbd "s-/") 'clear-kill-ring)
It's more consistent to also reset the yank pointer:
(defun clear-kill-ring ()
"Clear the kill ring variable"
(interactive)
(setq kill-ring nil
kill-ring-yank-pointer nil))
> > Or, IOW, the function isn't working!
>
> It probably is.
Indeed, it is.
Michael.
next prev parent reply other threads:[~2015-10-28 12:46 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.1159.1445970298.7904.help-gnu-emacs@gnu.org>
2015-10-27 18:49 ` clear-kill-ring function Barry Margolin
2015-10-27 19:29 ` Sharon Kimble
2015-10-27 20:18 ` Michael Heerdegen
2015-10-28 6:06 ` Sharon Kimble
[not found] ` <mailman.1186.1446012388.7904.help-gnu-emacs@gnu.org>
2015-10-28 10:37 ` Joost Kremers
2015-10-28 12:46 ` Michael Heerdegen [this message]
2015-10-29 2:34 ` Emanuel Berg
2015-10-28 2:14 ` Emanuel Berg
2015-10-27 18:24 Sharon Kimble
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=87fv0vduug.fsf@web.de \
--to=michael_heerdegen@web.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.