mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 15:19:25 +02:00
Use 0 instead of 0xffffffff to disable page width
git-svn-id: trunk@45357 -
This commit is contained in:
parent
c77ef7d6dd
commit
db0f0be3ba
@ -474,7 +474,7 @@ begin
|
||||
SavedWindowWidth:=-1;
|
||||
val(strpas(p),SavedWindowWidth);
|
||||
if SavedWindowWidth<>-1 then
|
||||
Command('set width 0xffffffff');
|
||||
Command('set width 0');
|
||||
end;
|
||||
|
||||
procedure TGDBController.NormWidth;
|
||||
|
@ -2772,7 +2772,7 @@ begin
|
||||
{$ifndef NODEBUG}
|
||||
If not assigned(Debugger) then Exit;
|
||||
Debugger^.SetCommand('print symbol on');
|
||||
Debugger^.SetCommand('width 0xffffffff');
|
||||
Debugger^.SetCommand('width 0');
|
||||
Debugger^.Command('disas /m '+FuncName);
|
||||
p:=StrNew(Debugger^.GetOutput);
|
||||
ProcessPChar(p);
|
||||
@ -2788,7 +2788,7 @@ begin
|
||||
{$ifndef NODEBUG}
|
||||
If not assigned(Debugger) then Exit;
|
||||
Debugger^.SetCommand('print symbol on');
|
||||
Debugger^.SetCommand('width 0xffffffff');
|
||||
Debugger^.SetCommand('width 0');
|
||||
Debugger^.Command('disas /m 0x'+HexStr(Addr,sizeof(Addr)*2));
|
||||
p:=StrNew(Debugger^.GetOutput);
|
||||
ProcessPChar(p);
|
||||
|
Loading…
Reference in New Issue
Block a user