Thanks for all the new info! I don't think that it's a bytcode problem.
I start to wonder if it's in number parsing...

On line 1102 of "src/racket/src/numstr.c", there's a call to STRTOD().
Does it change anything if you wrap that call with calls to
scheme_push_c_numeric_locale() and scheme_pop_c_numeric_locale(loc)?:

    {
      GC_CAN_IGNORE char *loc;
      loc = scheme_push_c_numeric_locale();
      d = STRTOD(ffl_buf, &ptr);
      scheme_pop_c_numeric_locale(loc);
    }

_________________________
  Racket Developers list:
  http://lists.racket-lang.org/dev

Reply via email to