GNU bug report logs -
#1276
23.0.60; select_window_norecord chokes on dead window
Previous Next
Reported by: martin rudalics <rudalics <at> gmx.at>
Date: Thu, 30 Oct 2008 11:50:03 UTC
Severity: normal
Done: martin rudalics <rudalics <at> gmx.at>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Fri, 31 Oct 2008 15:07:41 +0100
with message-id <490B112D.8010403 <at> gmx.at>
and subject line Re: bug#1276: 23.0.60; select_window_norecord chokes on dead window
has caused the Emacs bug report #1276,
regarding 23.0.60; select_window_norecord chokes on dead window
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don <at> donarmstrong.com
immediately.)
--
1276: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=1276
Emacs Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
To reproduce with emacs -Q evaluate the following form
(progn
(setq debug-on-error t)
(set-frame-height (selected-frame) 10)
(split-window)
(temp-buffer-resize-mode)
(setq temp-buffer-max-height 20))
and do
C-h v temp-buffer-max-height
Gets me
Debugger entered--Lisp error: (wrong-type-argument window-live-p #<window 3>)
describe-variable(temp-buffer-max-height)
call-interactively(describe-variable nil nil)
FWIW, the reason is that `fit-window-to-buffer' deletes prev_window
temp_output_buffer_show eventually wants to resurrect after running
`temp-buffer-show-hook'. The attached patch fixes this for me.
martin, who thinks that `fit-window-to-buffer' shouldn't delete windows ...
[select_window_norecord.diff (text/plain, inline)]
*** window.c.~1.631.~ 2008-10-29 10:29:14.718750000 +0100
--- window.c 2008-10-30 11:08:50.406250000 +0100
***************
*** 3643,3649 ****
select_window_norecord (window)
Lisp_Object window;
{
! return Fselect_window (window, Qt);
}
Lisp_Object
--- 3643,3650 ----
select_window_norecord (window)
Lisp_Object window;
{
! return WINDOW_LIVE_P (window)
! ? Fselect_window (window, Qt) : selected_window;
}
Lisp_Object
[Message part 5 (message/rfc822, inline)]
Fixed as
2008-10-31 Martin Rudalics <rudalics <at> gmx.at>
* window.c [...]
(select_window_norecord): Fix return value. (Bug#1276)
martin
This bug report was last modified 16 years and 209 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.