The unified diff between revisions [c2301346..] and [f288316d..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'src/lsc/lexer.l'

#
# old_revision [c2301346be8a3f197425575f91b4910582a22a62]
# new_revision [f288316da9714d1e11a3979cf3854e3cd99b5cb4]
#
# patch "src/lsc/lexer.l"
#  from [d53fa70f337e95617b535a04f1a6bfa60b4326a2]
#    to [abb8ad18ba69e18853d003ba9da3ab968f58d165]
#
============================================================
--- src/lsc/lexer.l	d53fa70f337e95617b535a04f1a6bfa60b4326a2
+++ src/lsc/lexer.l	abb8ad18ba69e18853d003ba9da3ab968f58d165
@@ -86,6 +86,7 @@ fndefint	return TOKFNDEFINT;
 
 function	return TOKFUNCTION;
 fndefint	return TOKFNDEFINT;
+fndefint_v	return TOKFNDEFINT_V;
 fndefext	return TOKFNDEFEXT;
 constant	return TOKCONSTANT;
 while		return TOKWHILE;
@@ -105,6 +106,10 @@ return		return TOKRETURN;
 
 [0-9]+          yylval.Tinteger = atoi(yytext); return NUMBER;
 -[0-9]+         yylval.Tinteger = atoi(yytext); return NUMBER;
+		/* Cater for the possibility that things might be signed or
+		   unsigned. This is horrible and ugly, but might just work. */
+0x[0-9a-fA-F]+        yylval.Tinteger = strtoul(yytext+2, (char **)NULL, 16); return NUMBER;
+-0x[0-9a-fA-F]+       yylval.Tinteger = strtol(yytext+2, (char **)NULL, 16); return NUMBER;
 [0-9]+\.[0-9]+	yylval.Treal = atof(yytext); return REAL;
 -[0-9]+\.[0-9]+	yylval.Treal = atof(yytext); return REAL;
 [_a-zA-Z0-9]+	yylval.Tstring = strdup(yytext); return IDENTIFIER;