lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>Another problem, which again has a zero-impact fix (at least, I hope so!) is
>that in ldblib.c, there is the following definition:
>
>static char key1, key2;
>
>If this is changed to
>
>static const char key1 = 0, key2 = 0;
>
>then EPOC is happy (because the data is initialised and constant) and there
>is no obvious overhead for any other system (except that the syntax is
>slightly less nice).

This has been fixed for 4.1 as follows:

static const char key1[] = "ab";

I hope this works for EPOC...
--lhf