VOGONS

Common searches


Search results

Display options

Patch: Debugger improvements: F3 key and "MCBS"

Hi all, I would like to contribute a patch for the debugger, but the "Patches" forum only allows posting by moderators. My patch provides the following functions: 1. The F3 key re-enters the previous command, just like in the COMMAND shell. No moving back and forth in the history though, sorry! 2. A …

Re: Debugger size and colors in Linux

printf("\e[8;50;80t") ?? That looks like a terrible, lazy hack to me. Outputting hard-wired terminal dependent escape codes? There must be a newwin() call somewhere where the window size is defined. In src/debug/debug_gui.cpp, DBGUI_StartUp() calls resizeterm(50,80) but from reading the man page it …

Re: Debugger size and colors in Linux

You could try sending the debug-process a SIGWINCH. I might be wrong, but I thought that that signal was used by the terminal to instruct the process inside it that the terminal's dimensions changed and the application should adapt. I gather that what is wanted is the opposite, i.e. for the process …

Debugger size and colors in Linux

I've had some trouble with the debugger's appearance (size and colors) on Fedora 10 after building from the latest sources in CVS. I thought I'd share these in case the workarounds help anyone else: Under xterm, dosbox doesn't resize the terminal so I have to use 'xterm -geom 80x50', and most of the …

Page 22 of 22