* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC
@ 2008-08-07 10:17 martin rudalics
2008-08-08 23:39 ` Keegan Carruthers-Smith
0 siblings, 1 reply; 18+ messages in thread
From: martin rudalics @ 2008-08-07 10:17 UTC (permalink / raw)
To: 466; +Cc: keegan.csmith
Sorry, I apparently mangled the mail header. Resending:
> When I am in an ERC buffer which is "touching" the bottom of my emacs session
> I can't switch to windows to the left or right. (ie the only window below it
> is the mini-buffer and the input prompt is at the bottom. Screenshot:
> http://people.cs.uct.ac.za/~smtkee002/windmoveproblem.jpg ). I have tested in
> other modes and this problem does not happen. C-x o still works.
I can't reproduce the behavior you describe here. Could you try to
edebug `windmove-find-other-window' to find out what happens?
Thanks in advance, martin.
^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-07 10:17 bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC martin rudalics @ 2008-08-08 23:39 ` Keegan Carruthers-Smith 2008-08-09 9:47 ` martin rudalics 2008-08-09 14:13 ` OFFICE ZERO 0 siblings, 2 replies; 18+ messages in thread From: Keegan Carruthers-Smith @ 2008-08-08 23:39 UTC (permalink / raw) To: martin rudalics; +Cc: 466 Hey, I ran edebug-eval-expression on (windmove-left) and got call-interactively: Symbol's value as variable is void: edebug-outside-windows Hope this helps Cheers, Keegan On Thu, Aug 7, 2008 at 12:17 PM, martin rudalics <rudalics@gmx.at> wrote: > Sorry, I apparently mangled the mail header. Resending: > >> When I am in an ERC buffer which is "touching" the bottom of my emacs >> session >> I can't switch to windows to the left or right. (ie the only window below >> it >> is the mini-buffer and the input prompt is at the bottom. Screenshot: >> http://people.cs.uct.ac.za/~smtkee002/windmoveproblem.jpg ). I have tested >> in >> other modes and this problem does not happen. C-x o still works. > > I can't reproduce the behavior you describe here. Could you try to > edebug `windmove-find-other-window' to find out what happens? > > Thanks in advance, martin. > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-08 23:39 ` Keegan Carruthers-Smith @ 2008-08-09 9:47 ` martin rudalics [not found] ` <6d7c2a160808090327k54093873ha744ea3f12959789@mail.gmail.com> ` (4 more replies) 2008-08-09 14:13 ` OFFICE ZERO 1 sibling, 5 replies; 18+ messages in thread From: martin rudalics @ 2008-08-09 9:47 UTC (permalink / raw) To: Keegan Carruthers-Smith; +Cc: 466 > Hey, > I ran edebug-eval-expression on (windmove-left) and got > call-interactively: Symbol's value as variable is void: edebug-outside-windows > > Hope this helps Not really. Please try the following. In a one-window frame do C-x 2 C-x o C-x 3 that is your frame should appear as follows: ----- | | |-----| | | | ----- In the lower right window display the ERC buffer, in the lower left window the buffer you want to move to. Next display window-move.el in the top window, move point to the definition of `windmove-find-other-window' and type C-u C-M-x to "instrument that function for debugging". Finally, go to the ERC window, and call `window-left'. edebug should now redirect focus to the upper window and you can type SPACE to step through `windmove-find-other-window'. If possible, do the same for a non-ERC buffer in the lower right window too to tell where executions differ. Thanks, martin ^ permalink raw reply [flat|nested] 18+ messages in thread
[parent not found: <6d7c2a160808090327k54093873ha744ea3f12959789@mail.gmail.com>]
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC [not found] ` <6d7c2a160808090327k54093873ha744ea3f12959789@mail.gmail.com> @ 2008-08-09 10:39 ` Keegan Carruthers-Smith 2008-08-09 10:57 ` OFFICE ZERO ` (2 more replies) 0 siblings, 3 replies; 18+ messages in thread From: Keegan Carruthers-Smith @ 2008-08-09 10:39 UTC (permalink / raw) To: 466 Hey, I don't have window-move.el, it's defined in windmove.el Also, when i was debugging i had the ERC buffer running in the bottom left corner. When I run debug on windmove-find-other-window it doesnt give me any output, but does take me to line 468 in windmove.el. The line is (let* ((actual-current-window (or window (selected-window))) in the function windmove-find-other-window If i do the debug on windmove-right, nothing happens I may be doing something wrong because I have never debugged lisp code before, so could be doing it totally wrong. I am a programmer though in C++, haskell, python and java though, so I do understand the concepts behind debugging lisp. I'll read the info pages on edebug sometime so I can maybe investigate the problem as well. On Sat, Aug 9, 2008 at 11:47 AM, martin rudalics <rudalics@gmx.at> wrote: >> Hey, >> I ran edebug-eval-expression on (windmove-left) and got >> call-interactively: Symbol's value as variable is void: >> edebug-outside-windows >> >> Hope this helps > > Not really. Please try the following. In a one-window frame do > > C-x 2 C-x o C-x 3 > > that is your frame should appear as follows: > > ----- > | | > |-----| > | | | > ----- > > In the lower right window display the ERC buffer, in the lower left > window the buffer you want to move to. Next display window-move.el in > the top window, move point to the definition of > `windmove-find-other-window' and type C-u C-M-x to "instrument that > function for debugging". > > Finally, go to the ERC window, and call `window-left'. edebug should > now redirect focus to the upper window and you can type SPACE to step > through `windmove-find-other-window'. If possible, do the same for a > non-ERC buffer in the lower right window too to tell where executions > differ. > > Thanks, martin > ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-09 10:39 ` Keegan Carruthers-Smith @ 2008-08-09 10:57 ` OFFICE ZERO [not found] ` <handler.466.B466.12182794274029.ackinfo@emacsbugs.donarmstrong.com> 2008-08-09 14:14 ` bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC OFFICE ZERO 2008-08-09 14:18 ` OFFICE ZERO 2 siblings, 1 reply; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 10:57 UTC (permalink / raw) To: Keegan Carruthers-Smith, 466 no thank you ----- Original Message ----- From: "Keegan Carruthers-Smith" <keegan.csmith@gmail.com> To: <466@emacsbugs.donarmstrong.com> Sent: Saturday, August 09, 2008 7:39 PM Subject: bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC > Hey, > I don't have window-move.el, it's defined in windmove.el > Also, when i was debugging i had the ERC buffer running in the bottom > left corner. > > When I run debug on windmove-find-other-window it doesnt give me any > output, but does take me to line 468 in windmove.el. The line is > (let* ((actual-current-window (or window (selected-window))) in the > function windmove-find-other-window > > If i do the debug on windmove-right, nothing happens > > I may be doing something wrong because I have never debugged lisp code > before, so could be doing it totally wrong. I am a programmer though > in C++, haskell, python and java though, so I do understand the > concepts behind debugging lisp. I'll read the info pages on edebug > sometime so I can maybe investigate the problem as well. > > On Sat, Aug 9, 2008 at 11:47 AM, martin rudalics <rudalics@gmx.at> wrote: >>> Hey, >>> I ran edebug-eval-expression on (windmove-left) and got >>> call-interactively: Symbol's value as variable is void: >>> edebug-outside-windows >>> >>> Hope this helps >> >> Not really. Please try the following. In a one-window frame do >> >> C-x 2 C-x o C-x 3 >> >> that is your frame should appear as follows: >> >> ----- >> | | >> |-----| >> | | | >> ----- >> >> In the lower right window display the ERC buffer, in the lower left >> window the buffer you want to move to. Next display window-move.el in >> the top window, move point to the definition of >> `windmove-find-other-window' and type C-u C-M-x to "instrument that >> function for debugging". >> >> Finally, go to the ERC window, and call `window-left'. edebug should >> now redirect focus to the upper window and you can type SPACE to step >> through `windmove-find-other-window'. If possible, do the same for a >> non-ERC buffer in the lower right window too to tell where executions >> differ. >> >> Thanks, martin >> > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
[parent not found: <handler.466.B466.12182794274029.ackinfo@emacsbugs.donarmstrong.com>]
* bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC) [not found] ` <handler.466.B466.12182794274029.ackinfo@emacsbugs.donarmstrong.com> @ 2008-08-09 12:13 ` OFFICE ZERO [not found] ` <handler.466.B466.121828401827815.ackinfo@emacsbugs.donarmstrong.com> 0 siblings, 1 reply; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 12:13 UTC (permalink / raw) To: 466 no thank you ----- Original Message ----- From: "Emacs bug Tracking System" <don@donarmstrong.com> To: "OFFICE ZERO" <hi-oh230@air.ocn.ne.jp> Sent: Saturday, August 09, 2008 8:05 PM Subject: bug#466: Info received (bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC) Thank you for the additional information you have supplied regarding this bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@gnu.org> If you wish to submit further information on this problem, please send it to 466@emacsbugs.donarmstrong.com, as before. Please do not send mail to don@donarmstrong.com unless you wish to report a problem with the Bug-tracking system. -- 466: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=466 Emacs Bug Tracking System Contact don@donarmstrong.com with problems ^ permalink raw reply [flat|nested] 18+ messages in thread
[parent not found: <handler.466.B466.121828401827815.ackinfo@emacsbugs.donarmstrong.com>]
* bug#466: Info received (bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC)) [not found] ` <handler.466.B466.121828401827815.ackinfo@emacsbugs.donarmstrong.com> @ 2008-08-09 13:17 ` OFFICE ZERO 0 siblings, 0 replies; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 13:17 UTC (permalink / raw) To: 466 no thank you ----- Original Message ----- From: "Emacs bug Tracking System" <don@donarmstrong.com> To: "OFFICE ZERO" <hi-oh230@air.ocn.ne.jp> Sent: Saturday, August 09, 2008 9:20 PM Subject: bug#466: Info received (bug#466: Info received (bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC)) Thank you for the additional information you have supplied regarding this bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@gnu.org> If you wish to submit further information on this problem, please send it to 466@emacsbugs.donarmstrong.com, as before. Please do not send mail to don@donarmstrong.com unless you wish to report a problem with the Bug-tracking system. -- 466: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=466 Emacs Bug Tracking System Contact don@donarmstrong.com with problems ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-09 10:39 ` Keegan Carruthers-Smith 2008-08-09 10:57 ` OFFICE ZERO @ 2008-08-09 14:14 ` OFFICE ZERO 2008-08-09 14:18 ` OFFICE ZERO 2 siblings, 0 replies; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 14:14 UTC (permalink / raw) To: Keegan Carruthers-Smith, 466 Do'nt send me mail !!! no tkank you!! ----- Original Message ----- From: "Keegan Carruthers-Smith" <keegan.csmith@gmail.com> To: <466@emacsbugs.donarmstrong.com> Sent: Saturday, August 09, 2008 7:39 PM Subject: bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC > Hey, > I don't have window-move.el, it's defined in windmove.el > Also, when i was debugging i had the ERC buffer running in the bottom > left corner. > > When I run debug on windmove-find-other-window it doesnt give me any > output, but does take me to line 468 in windmove.el. The line is > (let* ((actual-current-window (or window (selected-window))) in the > function windmove-find-other-window > > If i do the debug on windmove-right, nothing happens > > I may be doing something wrong because I have never debugged lisp code > before, so could be doing it totally wrong. I am a programmer though > in C++, haskell, python and java though, so I do understand the > concepts behind debugging lisp. I'll read the info pages on edebug > sometime so I can maybe investigate the problem as well. > > On Sat, Aug 9, 2008 at 11:47 AM, martin rudalics <rudalics@gmx.at> wrote: >>> Hey, >>> I ran edebug-eval-expression on (windmove-left) and got >>> call-interactively: Symbol's value as variable is void: >>> edebug-outside-windows >>> >>> Hope this helps >> >> Not really. Please try the following. In a one-window frame do >> >> C-x 2 C-x o C-x 3 >> >> that is your frame should appear as follows: >> >> ----- >> | | >> |-----| >> | | | >> ----- >> >> In the lower right window display the ERC buffer, in the lower left >> window the buffer you want to move to. Next display window-move.el in >> the top window, move point to the definition of >> `windmove-find-other-window' and type C-u C-M-x to "instrument that >> function for debugging". >> >> Finally, go to the ERC window, and call `window-left'. edebug should >> now redirect focus to the upper window and you can type SPACE to step >> through `windmove-find-other-window'. If possible, do the same for a >> non-ERC buffer in the lower right window too to tell where executions >> differ. >> >> Thanks, martin >> > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-09 10:39 ` Keegan Carruthers-Smith 2008-08-09 10:57 ` OFFICE ZERO 2008-08-09 14:14 ` bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC OFFICE ZERO @ 2008-08-09 14:18 ` OFFICE ZERO 2 siblings, 0 replies; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 14:18 UTC (permalink / raw) To: Keegan Carruthers-Smith, 466 Do'nt send me mail !!! no tkank you!! ----- Original Message ----- From: "Keegan Carruthers-Smith" <keegan.csmith@gmail.com> To: <466@emacsbugs.donarmstrong.com> Sent: Saturday, August 09, 2008 7:39 PM Subject: bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC > Hey, > I don't have window-move.el, it's defined in windmove.el > Also, when i was debugging i had the ERC buffer running in the bottom > left corner. > > When I run debug on windmove-find-other-window it doesnt give me any > output, but does take me to line 468 in windmove.el. The line is > (let* ((actual-current-window (or window (selected-window))) in the > function windmove-find-other-window > > If i do the debug on windmove-right, nothing happens > > I may be doing something wrong because I have never debugged lisp code > before, so could be doing it totally wrong. I am a programmer though > in C++, haskell, python and java though, so I do understand the > concepts behind debugging lisp. I'll read the info pages on edebug > sometime so I can maybe investigate the problem as well. > > On Sat, Aug 9, 2008 at 11:47 AM, martin rudalics <rudalics@gmx.at> wrote: >>> Hey, >>> I ran edebug-eval-expression on (windmove-left) and got >>> call-interactively: Symbol's value as variable is void: >>> edebug-outside-windows >>> >>> Hope this helps >> >> Not really. Please try the following. In a one-window frame do >> >> C-x 2 C-x o C-x 3 >> >> that is your frame should appear as follows: >> >> ----- >> | | >> |-----| >> | | | >> ----- >> >> In the lower right window display the ERC buffer, in the lower left >> window the buffer you want to move to. Next display window-move.el in >> the top window, move point to the definition of >> `windmove-find-other-window' and type C-u C-M-x to "instrument that >> function for debugging". >> >> Finally, go to the ERC window, and call `window-left'. edebug should >> now redirect focus to the upper window and you can type SPACE to step >> through `windmove-find-other-window'. If possible, do the same for a >> non-ERC buffer in the lower right window too to tell where executions >> differ. >> >> Thanks, martin >> > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-09 9:47 ` martin rudalics [not found] ` <6d7c2a160808090327k54093873ha744ea3f12959789@mail.gmail.com> @ 2008-08-09 10:57 ` OFFICE ZERO [not found] ` <handler.466.B466.12182794524036.ackinfo@emacsbugs.donarmstrong.com> 2008-08-09 14:14 ` bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC OFFICE ZERO ` (2 subsequent siblings) 4 siblings, 1 reply; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 10:57 UTC (permalink / raw) To: martin rudalics, 466 no thank you ----- Original Message ----- From: "martin rudalics" <rudalics@gmx.at> To: "Keegan Carruthers-Smith" <keegan.csmith@gmail.com> Cc: <466@emacsbugs.donarmstrong.com> Sent: Saturday, August 09, 2008 6:47 PM Subject: bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC > > Hey, > > I ran edebug-eval-expression on (windmove-left) and got > > call-interactively: Symbol's value as variable is void: > > edebug-outside-windows > > > > Hope this helps > > Not really. Please try the following. In a one-window frame do > > C-x 2 C-x o C-x 3 > > that is your frame should appear as follows: > > ----- > | | > |-----| > | | | > ----- > > In the lower right window display the ERC buffer, in the lower left > window the buffer you want to move to. Next display window-move.el in > the top window, move point to the definition of > `windmove-find-other-window' and type C-u C-M-x to "instrument that > function for debugging". > > Finally, go to the ERC window, and call `window-left'. edebug should > now redirect focus to the upper window and you can type SPACE to step > through `windmove-find-other-window'. If possible, do the same for a > non-ERC buffer in the lower right window too to tell where executions > differ. > > Thanks, martin > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
[parent not found: <handler.466.B466.12182794524036.ackinfo@emacsbugs.donarmstrong.com>]
* bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC) [not found] ` <handler.466.B466.12182794524036.ackinfo@emacsbugs.donarmstrong.com> @ 2008-08-09 12:13 ` OFFICE ZERO [not found] ` <handler.466.B466.121828401127808.ackinfo@emacsbugs.donarmstrong.com> 0 siblings, 1 reply; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 12:13 UTC (permalink / raw) To: 466 no thank you ----- Original Message ----- From: "Emacs bug Tracking System" <don@donarmstrong.com> To: "OFFICE ZERO" <hi-oh230@air.ocn.ne.jp> Sent: Saturday, August 09, 2008 8:05 PM Subject: bug#466: Info received (bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC) Thank you for the additional information you have supplied regarding this bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@gnu.org> If you wish to submit further information on this problem, please send it to 466@emacsbugs.donarmstrong.com, as before. Please do not send mail to don@donarmstrong.com unless you wish to report a problem with the Bug-tracking system. -- 466: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=466 Emacs Bug Tracking System Contact don@donarmstrong.com with problems ^ permalink raw reply [flat|nested] 18+ messages in thread
[parent not found: <handler.466.B466.121828401127808.ackinfo@emacsbugs.donarmstrong.com>]
* bug#466: Info received (bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC)) [not found] ` <handler.466.B466.121828401127808.ackinfo@emacsbugs.donarmstrong.com> @ 2008-08-09 13:17 ` OFFICE ZERO [not found] ` <handler.466.B466.121828786315185.ackinfo@emacsbugs.donarmstrong.com> 0 siblings, 1 reply; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 13:17 UTC (permalink / raw) To: 466 no thank you ----- Original Message ----- From: "Emacs bug Tracking System" <don@donarmstrong.com> To: "OFFICE ZERO" <hi-oh230@air.ocn.ne.jp> Sent: Saturday, August 09, 2008 9:20 PM Subject: bug#466: Info received (bug#466: Info received (bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC)) Thank you for the additional information you have supplied regarding this bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@gnu.org> If you wish to submit further information on this problem, please send it to 466@emacsbugs.donarmstrong.com, as before. Please do not send mail to don@donarmstrong.com unless you wish to report a problem with the Bug-tracking system. -- 466: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=466 Emacs Bug Tracking System Contact don@donarmstrong.com with problems ^ permalink raw reply [flat|nested] 18+ messages in thread
[parent not found: <handler.466.B466.121828786315185.ackinfo@emacsbugs.donarmstrong.com>]
* bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC))) [not found] ` <handler.466.B466.121828786315185.ackinfo@emacsbugs.donarmstrong.com> @ 2008-08-09 13:51 ` OFFICE ZERO [not found] ` <handler.466.B466.121828988025762.ackinfo@emacsbugs.donarmstrong.com> 0 siblings, 1 reply; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 13:51 UTC (permalink / raw) To: 466 Do'nt send me mail !!! ----- Original Message ----- From: "Emacs bug Tracking System" <don@donarmstrong.com> To: "OFFICE ZERO" <hi-oh230@air.ocn.ne.jp> Sent: Saturday, August 09, 2008 10:25 PM Subject: bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC))) Thank you for the additional information you have supplied regarding this bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@gnu.org> If you wish to submit further information on this problem, please send it to 466@emacsbugs.donarmstrong.com, as before. Please do not send mail to don@donarmstrong.com unless you wish to report a problem with the Bug-tracking system. -- 466: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=466 Emacs Bug Tracking System Contact don@donarmstrong.com with problems ^ permalink raw reply [flat|nested] 18+ messages in thread
[parent not found: <handler.466.B466.121828988025762.ackinfo@emacsbugs.donarmstrong.com>]
* bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC)))) [not found] ` <handler.466.B466.121828988025762.ackinfo@emacsbugs.donarmstrong.com> @ 2008-08-09 14:27 ` OFFICE ZERO 0 siblings, 0 replies; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 14:27 UTC (permalink / raw) To: 466 Do'nt send me mail !!! no tkank you!! ----- Original Message ----- From: "Emacs bug Tracking System" <don@donarmstrong.com> To: "OFFICE ZERO" <hi-oh230@air.ocn.ne.jp> Sent: Saturday, August 09, 2008 11:00 PM Subject: bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC)))) Thank you for the additional information you have supplied regarding this bug report. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): Emacs Bugs <bug-gnu-emacs@gnu.org> If you wish to submit further information on this problem, please send it to 466@emacsbugs.donarmstrong.com, as before. Please do not send mail to don@donarmstrong.com unless you wish to report a problem with the Bug-tracking system. -- 466: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=466 Emacs Bug Tracking System Contact don@donarmstrong.com with problems ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-09 9:47 ` martin rudalics [not found] ` <6d7c2a160808090327k54093873ha744ea3f12959789@mail.gmail.com> 2008-08-09 10:57 ` OFFICE ZERO @ 2008-08-09 14:14 ` OFFICE ZERO 2008-08-09 14:18 ` OFFICE ZERO 2011-09-11 17:09 ` Lars Magne Ingebrigtsen 4 siblings, 0 replies; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 14:14 UTC (permalink / raw) To: martin rudalics, 466 Do'nt send me mail !!! no tkank you!! ----- Original Message ----- From: "martin rudalics" <rudalics@gmx.at> To: "Keegan Carruthers-Smith" <keegan.csmith@gmail.com> Cc: <466@emacsbugs.donarmstrong.com> Sent: Saturday, August 09, 2008 6:47 PM Subject: bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC > > Hey, > > I ran edebug-eval-expression on (windmove-left) and got > > call-interactively: Symbol's value as variable is void: > > edebug-outside-windows > > > > Hope this helps > > Not really. Please try the following. In a one-window frame do > > C-x 2 C-x o C-x 3 > > that is your frame should appear as follows: > > ----- > | | > |-----| > | | | > ----- > > In the lower right window display the ERC buffer, in the lower left > window the buffer you want to move to. Next display window-move.el in > the top window, move point to the definition of > `windmove-find-other-window' and type C-u C-M-x to "instrument that > function for debugging". > > Finally, go to the ERC window, and call `window-left'. edebug should > now redirect focus to the upper window and you can type SPACE to step > through `windmove-find-other-window'. If possible, do the same for a > non-ERC buffer in the lower right window too to tell where executions > differ. > > Thanks, martin > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-09 9:47 ` martin rudalics ` (2 preceding siblings ...) 2008-08-09 14:14 ` bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC OFFICE ZERO @ 2008-08-09 14:18 ` OFFICE ZERO 2011-09-11 17:09 ` Lars Magne Ingebrigtsen 4 siblings, 0 replies; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 14:18 UTC (permalink / raw) To: martin rudalics, 466 Do'nt send me mail !!! no tkank you!! ----- Original Message ----- From: "martin rudalics" <rudalics@gmx.at> To: "Keegan Carruthers-Smith" <keegan.csmith@gmail.com> Cc: <466@emacsbugs.donarmstrong.com> Sent: Saturday, August 09, 2008 6:47 PM Subject: bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC > > Hey, > > I ran edebug-eval-expression on (windmove-left) and got > > call-interactively: Symbol's value as variable is void: > > edebug-outside-windows > > > > Hope this helps > > Not really. Please try the following. In a one-window frame do > > C-x 2 C-x o C-x 3 > > that is your frame should appear as follows: > > ----- > | | > |-----| > | | | > ----- > > In the lower right window display the ERC buffer, in the lower left > window the buffer you want to move to. Next display window-move.el in > the top window, move point to the definition of > `windmove-find-other-window' and type C-u C-M-x to "instrument that > function for debugging". > > Finally, go to the ERC window, and call `window-left'. edebug should > now redirect focus to the upper window and you can type SPACE to step > through `windmove-find-other-window'. If possible, do the same for a > non-ERC buffer in the lower right window too to tell where executions > differ. > > Thanks, martin > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-09 9:47 ` martin rudalics ` (3 preceding siblings ...) 2008-08-09 14:18 ` OFFICE ZERO @ 2011-09-11 17:09 ` Lars Magne Ingebrigtsen 4 siblings, 0 replies; 18+ messages in thread From: Lars Magne Ingebrigtsen @ 2011-09-11 17:09 UTC (permalink / raw) To: martin rudalics; +Cc: Keegan Carruthers-Smith, 466 martin rudalics <rudalics@gmx.at> writes: > Not really. Please try the following. In a one-window frame do > > C-x 2 C-x o C-x 3 > > that is your frame should appear as follows: > > ----- > | | > |-----| > | | | > ----- More information was requested three years ago, but apparently wasn't given, so I'm closing this bug report. Please reopen if it's still valid. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC 2008-08-08 23:39 ` Keegan Carruthers-Smith 2008-08-09 9:47 ` martin rudalics @ 2008-08-09 14:13 ` OFFICE ZERO 1 sibling, 0 replies; 18+ messages in thread From: OFFICE ZERO @ 2008-08-09 14:13 UTC (permalink / raw) To: Keegan Carruthers-Smith, 466 Do'nt send me mail !!! no tkank you!! ----- Original Message ----- From: "Keegan Carruthers-Smith" <keegan.csmith@gmail.com> To: "martin rudalics" <rudalics@gmx.at> Cc: <466@emacsbugs.donarmstrong.com> Sent: Saturday, August 09, 2008 8:39 AM Subject: bug#466: 23.0.60;windmove.el doesnt not always switch windows in ERC > Hey, > I ran edebug-eval-expression on (windmove-left) and got > call-interactively: Symbol's value as variable is void: > edebug-outside-windows > > Hope this helps > > Cheers, > Keegan > > On Thu, Aug 7, 2008 at 12:17 PM, martin rudalics <rudalics@gmx.at> wrote: >> Sorry, I apparently mangled the mail header. Resending: >> >>> When I am in an ERC buffer which is "touching" the bottom of my emacs >>> session >>> I can't switch to windows to the left or right. (ie the only window >>> below >>> it >>> is the mini-buffer and the input prompt is at the bottom. Screenshot: >>> http://people.cs.uct.ac.za/~smtkee002/windmoveproblem.jpg ). I have >>> tested >>> in >>> other modes and this problem does not happen. C-x o still works. >> >> I can't reproduce the behavior you describe here. Could you try to >> edebug `windmove-find-other-window' to find out what happens? >> >> Thanks in advance, martin. >> >> >> >> > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2011-09-11 17:09 UTC | newest] Thread overview: 18+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-08-07 10:17 bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC martin rudalics 2008-08-08 23:39 ` Keegan Carruthers-Smith 2008-08-09 9:47 ` martin rudalics [not found] ` <6d7c2a160808090327k54093873ha744ea3f12959789@mail.gmail.com> 2008-08-09 10:39 ` Keegan Carruthers-Smith 2008-08-09 10:57 ` OFFICE ZERO [not found] ` <handler.466.B466.12182794274029.ackinfo@emacsbugs.donarmstrong.com> 2008-08-09 12:13 ` bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC) OFFICE ZERO [not found] ` <handler.466.B466.121828401827815.ackinfo@emacsbugs.donarmstrong.com> 2008-08-09 13:17 ` bug#466: Info received (bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC)) OFFICE ZERO 2008-08-09 14:14 ` bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC OFFICE ZERO 2008-08-09 14:18 ` OFFICE ZERO 2008-08-09 10:57 ` OFFICE ZERO [not found] ` <handler.466.B466.12182794524036.ackinfo@emacsbugs.donarmstrong.com> 2008-08-09 12:13 ` bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC) OFFICE ZERO [not found] ` <handler.466.B466.121828401127808.ackinfo@emacsbugs.donarmstrong.com> 2008-08-09 13:17 ` bug#466: Info received (bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC)) OFFICE ZERO [not found] ` <handler.466.B466.121828786315185.ackinfo@emacsbugs.donarmstrong.com> 2008-08-09 13:51 ` bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC))) OFFICE ZERO [not found] ` <handler.466.B466.121828988025762.ackinfo@emacsbugs.donarmstrong.com> 2008-08-09 14:27 ` bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: Info received (bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC)))) OFFICE ZERO 2008-08-09 14:14 ` bug#466: 23.0.60; windmove.el doesnt not always switch windows in ERC OFFICE ZERO 2008-08-09 14:18 ` OFFICE ZERO 2011-09-11 17:09 ` Lars Magne Ingebrigtsen 2008-08-09 14:13 ` OFFICE ZERO
Code repositories for project(s) associated with this public inbox https://git.savannah.gnu.org/cgit/emacs.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).