~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to ide/wwinhelp.pas

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{
2
 
    $Id: wwinhelp.pas,v 1.7 2005/02/14 17:13:19 peter Exp $
3
2
    This file is part of the Free Pascal Integrated Development Environment
4
3
    Copyright (c) 2000 by Berczi Gabor
5
4
 
1512
1511
                    begin
1513
1512
                      if LastEmittedChar<>ord(hscLineBreak) then
1514
1513
                        EmitText(hscLineBreak);
1515
 
                      EmitDebugText('[tag0x'+IntToHex(Cmd,2)+']');
 
1514
                      EmitDebugText('[tag0x'+hexstr(Cmd,2)+']');
1516
1515
                    end;
1517
1516
              $80 : begin
1518
1517
                      FontNumber:=ReadSHORT;
1519
 
                      EmitDebugText('[font'+IntToStr(FontNumber)+']');
 
1518
                      EmitDebugText('[font'+inttostr(FontNumber)+']');
1520
1519
                    end;
1521
1520
              $81 : {LineBreak}
1522
1521
                    begin
1615
1614
                        AddLinkToTopic(T,ID,LinkOfs);
1616
1615
                      end;
1617
1616
                    end;
1618
 
              else EmitDebugText('[tag0x'+IntToHex(Cmd,2)+']');
 
1617
              else EmitDebugText('[tag0x'+hexstr(Cmd,2)+']');
1619
1618
            end;
1620
1619
          end;
1621
1620
          if SLen>0 then
1675
1674
end;
1676
1675
 
1677
1676
END.
1678
 
{
1679
 
  $Log: wwinhelp.pas,v $
1680
 
  Revision 1.7  2005/02/14 17:13:19  peter
1681
 
    * truncate log
1682
 
 
1683
 
}