From ffbc7d07614d88b3e0fb9c574925a5101b415f11 Mon Sep 17 00:00:00 2001 From: loesje_ Date: Mon, 19 Mar 2012 13:45:20 +0000 Subject: [PATCH] * Removed unused variables git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2354 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- applications/idlparser/idlparser.pas | 3 --- 1 file changed, 3 deletions(-) diff --git a/applications/idlparser/idlparser.pas b/applications/idlparser/idlparser.pas index d7e25a1c2..287cdd4c6 100644 --- a/applications/idlparser/idlparser.pas +++ b/applications/idlparser/idlparser.pas @@ -158,7 +158,6 @@ type TParseState = (psBegin, var PriorState: TParseState; ParseState: TParseState; - LineNr: integer; IDLString: string; pCurrent: pchar; AWord: string; @@ -192,8 +191,6 @@ var end; function CheckStartWord(ASetParseState, ASetPriorParseState: TParseState; AllowMinus: boolean = false): boolean; - var - c: char; begin result := false; wordchars:=['a'..'z','A'..'Z','0'..'9','_'];