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

« back to all changes in this revision

Viewing changes to ide/wini.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: wini.pas,v 1.6 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) 1998 by B�rczi G�bor
5
4
 
89
88
uses
90
89
  WUtils;
91
90
 
 
91
{$IFOPT Q+}
 
92
  {$Q-}
 
93
  {$DEFINE REENABLE_Q}
 
94
{$ENDIF}
 
95
 
92
96
function CalcHash(const s: String): Cardinal;
93
97
var
94
98
  i: integer;
98
102
    CalcHash := CalcHash shl 9 - CalcHash shl 4 + Ord(S[I]);
99
103
end;
100
104
 
 
105
{$IFDEF REENABLE_Q}
 
106
  {$Q+}
 
107
{$ENDIF}
 
108
 
101
109
constructor TINIEntry.Init(const ALine: string);
102
110
begin
103
111
  inherited Init;
507
515
 
508
516
 
509
517
END.
510
 
{
511
 
  $Log: wini.pas,v $
512
 
  Revision 1.6  2005/02/14 17:13:19  peter
513
 
    * truncate log
514
 
 
515
 
}