GNU bug report logs -
#12034
24.1.50; pp-display-expression may select deleted window
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#12034: 24.1.50; pp-display-expression may select deleted window
which was filed against the emacs package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 12034 <at> debbugs.gnu.org.
--
12034: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12034
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
> 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.
Patch applied, bug closed.
Thanks, martin
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
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.
[pp-display-expression.diff (text/x-diff, inline)]
=== 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 <at> 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 <at> 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)))
))))))
[Message part 6 (text/plain, inline)]
Christopher
This bug report was last modified 13 years and 22 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.