* handle . in a reference like +

git-svn-id: trunk@4769 -
This commit is contained in:
peter 2006-10-02 17:39:22 +00:00
parent 5de217f04c
commit cc1f9f8a9b

View File

@ -1251,6 +1251,16 @@ Unit Rax86int;
Scale:=0;
end;
AS_DOT :
Begin
{ Handle like a + }
Consume(AS_DOT);
Negative:=false;
GotPlus:=true;
GotStar:=false;
Scale:=0;
end;
AS_MINUS :
begin
Consume(AS_MINUS);