From: Christopher Schmidt <christopher@ch.ristopher.com>
To: 12034@debbugs.gnu.org
Subject: bug#12034: 24.1.50; pp-display-expression may select deleted window
Date: Mon, 23 Jul 2012 15:04:32 +0100 (BST) [thread overview]
Message-ID: <87a9yqwp3n@ch.ristopher.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 677 bytes --]
In pp-display-expression there is this sexp:
(let ((temp-buffer-show-function old-show-function)
(old-selected (selected-window))
(window (display-buffer buf)))
^^^^^^^^^^^^^^^^^^^^
(goto-char (point-min)) ; expected by some hooks ...
(make-frame-visible (window-frame window))
(unwind-protect
(progn
(select-window window)
(run-hooks 'temp-buffer-show-hook))
(select-window old-selected)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(message "See buffer %s." out-buffer-name)))
An user may implement an overriding action for display-buffer that could
delete old-selected.
[-- Attachment #2: pp-display-expression.diff --]
[-- Type: text/x-diff, Size: 956 bytes --]
=== modified file 'lisp/ChangeLog'
--- lisp/ChangeLog 2012-07-22 21:14:12 +0000
+++ lisp/ChangeLog 2012-07-23 12:49:21 +0000
@@ -1,3 +1,8 @@
+2012-07-23 Christopher Schmidt <christopher@ch.ristopher.com>
+
+ * emacs-lisp/pp.el (pp-display-expression): Select old selected
+ window only if it is still live (Bug#).
+
2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
* ses.el (ses-cell-formula-aset): New macro.
=== modified file 'lisp/emacs-lisp/pp.el'
--- lisp/emacs-lisp/pp.el 2012-02-05 02:09:35 +0000
+++ lisp/emacs-lisp/pp.el 2012-07-23 12:44:07 +0000
@@ -110,7 +110,8 @@
(progn
(select-window window)
(run-hooks 'temp-buffer-show-hook))
- (select-window old-selected)
+ (when (window-live-p old-selected)
+ (select-window old-selected))
(message "See buffer %s." out-buffer-name)))
(message "%s" (buffer-substring (point-min) (point)))
))))))
[-- Attachment #3: Type: text/plain, Size: 21 bytes --]
Christopher
next reply other threads:[~2012-07-23 14:04 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-23 14:04 Christopher Schmidt [this message]
2012-07-25 9:47 ` bug#12034: 24.1.50; pp-display-expression may select deleted window martin rudalics
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=87a9yqwp3n@ch.ristopher.com \
--to=christopher@ch.ristopher.com \
--cc=12034@debbugs.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.