tekai / geben-on-emacs

Automatically exported from code.google.com/p/geben-on-emacs
GNU Lesser General Public License v2.1
0 stars 0 forks source link

Geben does not close buffers when PHP debug session finished #13

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Conduct a PHP debug session and step through some code files so that geben 
opens some debugging buffers
2. End the debug session ("q" or "g")

What is the expected output? What do you see instead?
Geben should close the PHP debug buffers it had opened, but they remain open 
(causing huge number of junk buffers after every debug session when used on a 
sizeable application).

What version of the product are you using? On what operating system?
Geben 0.26, Emacs 23.1.1, Xdebug 2.1.1, Ubuntu 10.10
php.ini ...
[debug]
xdebug.remote_autostart=1
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_mode=req
xdebug.var_display_max_depth=3

Please provide any additional information below.
Works correctly on another PC with Geben 0.26, Emacs 23.2.1, Xdebug 2.0.5, 
Ubuntu 10.10
php.ini ...
[debug]
xdebug.remote_autostart=off
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000

If wontfix, any pointers as to where the problem might lie, or how to try and 
solve (without reinstalling all sorts of dependencies)? Thanks.

Original issue reported on code.google.com by jdo...@flinttechnology.co.uk on 11 Feb 2012 at 2:24