Lars Gullik Bjønnes wrote:
> Some testing first, then we'll decide.
Certainly.
> But if not now, we should move towards delayed initialization of math
> as well.
I think so, too. After 1.4, we should try to do more clever initialization
(whatever that means).
> What does initMath really do?
void initMath()
{
static bool initialized = false;
if (!initialized) {
initParser();
initSymbols();
initialized = true;
}
}
IMO it is the call to initSymbols() that causes the delay, because then, the
whole font database is searched for the symbol fonts.
Jürgen