if there is an accent char like that éà ...
in comments, there is a crash Under vc .net 2003
isalnum take an int as input parameter and this chars
are seen a less than 0.
to correct, change this line (lexi.h line 59)
#define Lisword(c) (isalnum(c) || ((c) == '_') || ((c)
== '#'))
by
#define Lisword(c) (isalnum((unsigned char)c) || ((c)
== '_') || ((c) == '#'))