|
@@ -72,7 +72,7 @@ TYPE
|
|
|
notsym,nilsym,orsym,setsym,tosym,virtualsym,usessym,
|
|
|
casevarsym,ofobjectsym,
|
|
|
{ other symbols }
|
|
|
- becomes,delphicomment,dopencomment,dclosecomment,opencomment,closecomment,semicolon,colon,equals,
|
|
|
+ becomes,notequal,lessorequal,greaterorequal,delphicomment,dopencomment,dclosecomment,opencomment,closecomment,semicolon,colon,equals,
|
|
|
openparen,closeparen,period,endoffile,othersym);
|
|
|
|
|
|
{ Formatting options }
|
|
@@ -252,7 +252,7 @@ CONST
|
|
|
'and','arr','div','down','file','goto',
|
|
|
'in','mod','not','nil','or','set','to','virtual','uses',
|
|
|
'casevar','ofobject',
|
|
|
- 'becomes','delphicomment','dopencomment','dclosecomment',
|
|
|
+ 'becomes','notequal','lessorequal','greaterorequal','delphicomment','dopencomment','dclosecomment',
|
|
|
'opencomment','closecomment','semicolon',
|
|
|
'colon','equals',
|
|
|
'openparen','closeparen','period','endoffile','other');
|
|
@@ -265,7 +265,7 @@ CONST
|
|
|
|
|
|
|
|
|
DblChar : DblCharTable =
|
|
|
- ( ':=', '//','(*','*)' );
|
|
|
+ ( ':=', '<>', '<=', '>=', '//','(*','*)' );
|
|
|
|
|
|
SglChar : SglCharTable =
|
|
|
('{', '}', ';', ':', '=', '(', ')', '.' );
|
|
@@ -1411,5 +1411,5 @@ End;
|
|
|
|
|
|
|
|
|
Begin
|
|
|
- dblch := [becomes, opencomment];
|
|
|
+ dblch := [becomes, notequal, lessorequal, greaterorequal, opencomment];
|
|
|
end.
|