arm64: codea/abgabe_aa.0
[uebersetzerbau-ss10.git] / parser / scanner.lex
index 103237191573eb6ce05c52aeeccf84284fc35720..049cdd2c1e54245ce7aad3a3f12b63dd65da5130 100644 (file)
@@ -46,8 +46,7 @@ this return(THIS);
 {NUMBER_DEC} return(NUM);
 {NUMBER_HEX} return(NUM);
 
-\:= return(ASSIGN);
-{SPECIAL_CHAR} return(yytext[0]);
+{SPECIAL_CHAR} return(*yytext);
 
 {WHITESPACE} /* ignore */