>>>> "Hrvoje" == Hrvoje Niksic
<hniksic(a)srce.hr> writes:
Hrvoje> SAKIYAMA Nobuo <nobuo(a)db3.so-net.or.jp> writes:
> When executing cl-float-limits in dumped xemacs,
> overflow errors and underflow errors are
> guarded by
>
> (condition-case err
> body
> (arith-error nil))
>
> style.
>
> But in temacs, signal handlers are not defined as in my previous
> article. Thus, all overflow errors and underflow errors may cause
> unguarded SIGFPEs and temacs dumps core.
Hrvoje> Thanks for tracking this down. The right solution is to catch SIGFPE
Hrvoje> in temacs, so that the code works. Martin, what do you think?
I can't think of any reason not to catch the same signals in batch
mode as in `regular' mode. The standard lisp facilities should be
available to folks trying to write XEmacs `scripts'.
But signal handling is always tricky, so we should be careful.
Martin