all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Jambunathan K <kjambunathan@gmail.com>
Cc: 14486@debbugs.gnu.org
Subject: bug#14486: 24.3.50; A very subtle/obscure bug - with-temp-buffer + pop-to-buffer + insert
Date: Tue, 28 May 2013 00:53:18 -0400	[thread overview]
Message-ID: <jwvtxlnd7yf.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <878v2zn7n2.fsf@gmail.com> (Jambunathan K.'s message of "Tue, 28 May 2013 08:16:41 +0530")

>       (defvar count 1)
>       (defun testing ()
>         (interactive)
>         (forward-line 1)
>         (insert (with-temp-buffer
>                   (insert (format "string-%d\n" (setq count (+ 1 count))))
>                   (pop-to-buffer (current-buffer))
>                   (buffer-string))))

When the outer `insert' is executed, the selected window is not the one
displaying *scratch* but the one displaying *Messages*, so the window's
point is not affected by `insert'.

You're just seeing the effect of the fact that each buffer has N+1
different `point's, where N is the number of windows displaying this buffer.


        Stefan





      reply	other threads:[~2013-05-28  4:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-28  2:46 bug#14486: 24.3.50; A very subtle/obscure bug - with-temp-buffer + pop-to-buffer + insert Jambunathan K
2013-05-28  4:53 ` Stefan Monnier [this message]

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=jwvtxlnd7yf.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=14486@debbugs.gnu.org \
    --cc=kjambunathan@gmail.com \
    /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.