Use 0 instead of 0xffffffff to disable page width

git-svn-id: trunk@45358 -
This commit is contained in:
pierre 2020-05-13 16:20:48 +00:00
parent db0f0be3ba
commit a414997a84

View File

@ -2984,10 +2984,9 @@ begin
gdb__init;
command_level:=0;
{ set output mode for GDB }
{ only these values disable filtering
DONT CHANGE THEM !!! PM }
gdb_command('set width 0xffffffff');
gdb_command('set height 0xffffffff');
{ set height and width to zero to disable paging }
gdb_command('set width 0');
gdb_command('set height 0');
{ other standard commands used for fpc debugging }
gdb_command('set print demangle off');
gdb_command('set gnutarget auto');