
On Tue, Mar 21, 2000 at 12:46:03AM +0300, Vladimir Volovich wrote:
>
> 1) :min-range-length none does not work (documentation says that
> :min-range-length could be either a positive integer or a none keyword):
>
> (define-location-class "arabic-page-numbers" ("arabic-numbers")
:min-range-length none)
This is probably broken. Use '0' instead of 'none' (does the same thing).
(define-location-class "arabic-page-numbers" ("arabic-numbers")
:min-range-length 0)
> 3) when xindy is run with "-f" option (a filter), it returns
> errorlevel 9 even after successful run. Is this correct?
>From an earlier message to this mailing list by Peter Meszaros
<pmeszaros@effice.hu> regarding the 'xindy' perl script:
The return value is 9 if sig_catch is called at line 248 (sig_catch calls
+exit(9);).
The line should be
unlink $tmpfile; # do cleanup
instead of:
&sig_catch; # do cleanup
--
Thomas Henlich