[tex-live] is this finally it?

Thomas Esser te@informatik.uni-hannover.de
Wed, 29 May 2002 19:38:45 +0200


> What have you done exactly? Would you please hold your hand for while and 
> please tell me how can I get the previous version?

Just FYI: minimal changes to make omega 1.15 work with web2c-7.3.7
have been:

  usagelong (0, FOO, nil);        -> usagehelp (FOO);
  usage_long (0, FOO, nil);       -> usage_help (FOO);
  usage (1, 'foo');               -> usage (foo);
  xmalloc (size + 1)              -> xmalloc_array (type, size)
  xmalloc_array (ptr, size)       -> ptr = xmalloc_array (type, size)
  output_c_style_error_messages_p -> file_line_error_style_p

After these changes, it compiled and omega started without
crashing. "lambda sample2e" also works...

I have not yet tested anything else.

Thomas