diff options
author | peter <peter@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2005-05-16 20:59:02 +0000 |
---|---|---|
committer | peter <peter@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2005-05-16 20:59:02 +0000 |
commit | 305c47f4058d0a17df04d2cad47c4f06d85e8bf0 (patch) | |
tree | f1cac61eba83b45a40d0f303dad84153c884eec3 /rtl/palmos | |
parent | ee155988424f12028c7d08a6012546cc8b6781f9 (diff) | |
download | fpc-305c47f4058d0a17df04d2cad47c4f06d85e8bf0.tar.gz |
* post 2.0.0 fixes from cvs
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@7 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'rtl/palmos')
-rw-r--r-- | rtl/palmos/system.pp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rtl/palmos/system.pp b/rtl/palmos/system.pp index c01bdb4ee9..c58c87365a 100644 --- a/rtl/palmos/system.pp +++ b/rtl/palmos/system.pp @@ -1,5 +1,5 @@ { - $Id: system.pp,v 1.8 2005/04/03 21:10:59 hajny Exp $ + $Id: system.pp,v 1.9 2005/05/12 20:29:04 michael Exp $ This file is part of the Free Pascal run time library. Copyright (c) 1999-2000 by Florian Klaempfl @@ -32,6 +32,7 @@ const FileNameCaseSensitive = false; CtrlZMarksEOF: boolean = false; (* #26 not considered as end of file *) maxExitCode = 255; {$ERROR TODO: CONFIRM THIS} + MaxPathLen = 256; Type { type and constant declartions doesn't hurt } @@ -110,6 +111,9 @@ end. { $Log: system.pp,v $ + Revision 1.9 2005/05/12 20:29:04 michael + + Added maxpathlen constant (maximum length of filename path) + Revision 1.8 2005/04/03 21:10:59 hajny * EOF_CTRLZ conditional define replaced with CtrlZMarksEOF, #26 handling made more consistent (fix for bug 2453) |