mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-20 00:09:28 +02:00
SynEdit: fixed an uninitialized value
git-svn-id: trunk@36119 -
This commit is contained in:
parent
9fea72270b
commit
b83f0fd43c
@ -333,7 +333,7 @@ type
|
||||
function ParsePiece (var flagp : integer) : PRegExprChar;
|
||||
// something followed by possible [*+?]
|
||||
|
||||
function ParseAtom (var flagp : integer) : PRegExprChar;
|
||||
function ParseAtom (out flagp : integer) : PRegExprChar;
|
||||
// the lowest level
|
||||
|
||||
function GetCompilerErrorPos : PtrInt;
|
||||
@ -2058,7 +2058,7 @@ function TRegExpr.ParsePiece (var flagp : integer) : PRegExprChar;
|
||||
end; { of function TRegExpr.ParsePiece
|
||||
--------------------------------------------------------------}
|
||||
|
||||
function TRegExpr.ParseAtom (var flagp : integer) : PRegExprChar;
|
||||
function TRegExpr.ParseAtom (out flagp : integer) : PRegExprChar;
|
||||
// the lowest level
|
||||
// Optimization: gobbles an entire sequence of ordinary characters so that
|
||||
// it can turn them into a single node, which is smaller to store and
|
||||
|
Loading…
Reference in New Issue
Block a user