diff options
author | tom_at_work <tom_at_work@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2007-01-26 22:29:39 +0000 |
---|---|---|
committer | tom_at_work <tom_at_work@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2007-01-26 22:29:39 +0000 |
commit | 87424512cddb1631fba2950b71409bfe45a696fe (patch) | |
tree | a84378c2507b3f094c4861651564dc45a4070083 /compiler/cutils.pas | |
parent | 3dcd3cb35bb3c54f6246599406ff7f9208522c7e (diff) | |
download | fpc-87424512cddb1631fba2950b71409bfe45a696fe.tar.gz |
* renamed TStringList to TCmdStrList, in general use TCmdStr instead of shortstrings to fix bug 6351
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@6215 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/cutils.pas')
-rw-r--r-- | compiler/cutils.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/cutils.pas b/compiler/cutils.pas index 6ecf154ff0..2741fa1173 100644 --- a/compiler/cutils.pas +++ b/compiler/cutils.pas @@ -98,7 +98,7 @@ interface If it is not quoted, or if the quoting is bad, s is not touched, and false is returned. } - function DePascalQuote(var s: string): Boolean; + function DePascalQuote(var s: ansistring): Boolean; function CompareStr(const S1, S2: string): Integer; function CompareText(S1, S2: string): integer; @@ -919,7 +919,7 @@ implementation end; - function DePascalQuote(var s: string): Boolean; + function DePascalQuote(var s: ansistring): Boolean; var destPos, sourcePos, len: Integer; t: string; |