all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: help-gnu-emacs@gnu.org
Subject: Re: Can I disable yank's automatic "set mark"
Date: Wed, 10 Nov 2010 13:29:37 -0500	[thread overview]
Message-ID: <jwvsjz9ox6t.fsf-monnier+gnu.emacs.help@gnu.org> (raw)
In-Reply-To: 4cda84d7$0$29178$c3e8da3$88b277c5@news.astraweb.com

> Whenever I yank (ctrl-y) text into a buffer, the mark is automatically
> set.  Is there any way to disable this behavior?

Not directly, no.  Here's how I found out:

  C-h k C-y

told me that C-y is bound to `yank' defined in `simple.el'.
So I clicked on `simple.el' which brought me to the simple.el file where
it defines `yank'.  That definition starts with a longish text (that
same text you say in the *Help*), and then says:

  (interactive "*P")
  (setq yank-window-start (window-start))
  ;; If we don't get all the way thru, make last-command indicate that
  ;; for the following command.
  (setq this-command t)
  (push-mark (point))
  (insert-for-yank (current-kill (cond
				  ((listp arg) 0)
				  ((eq arg '-) -2)
				  (t (1- arg)))))
  (if (consp arg)
      ;; This is like exchange-point-and-mark, but doesn't activate the mark.
      ;; It is cleaner to avoid activation, even though the command
      ;; loop would deactivate the mark because we inserted text.
      (goto-char (prog1 (mark t)
		   (set-marker (mark-marker) (point) (current-buffer)))))
  ;; If we do get all the way thru, make this-command indicate that.
  (if (eq this-command t)
      (setq this-command 'yank))
  nil)

While you may not understand all of the code, you'll probaly notice
that it says "(push-mark (point))" and that it says so without any
intervening "if" or other conditional which means that it sets the mark
without any way not to do it.

So if you want to change it you have 2 solutions:
create a new command `my-yank' which copies all the above code except
for the push-mark call, or create a new command which calls `yank' and
then undoes that push-mark, e.g.

(defun my-yank ()
  "Put your description here."
  (interactive)
  (yank)
  (pop-mark))


        Stefan


       reply	other threads:[~2010-11-10 18:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <4cda84d7$0$29178$c3e8da3$88b277c5@news.astraweb.com>
2010-11-10 18:29 ` Stefan Monnier [this message]
2010-11-11 11:48   ` Can I disable yank's automatic "set mark" Rick

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=jwvsjz9ox6t.fsf-monnier+gnu.emacs.help@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --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.