On Mon, Mar 27, 2006 at 01:40:56PM -0600, Karl Berry wrote:
> I think that the correct solution is to replace the final default else
> with the conditional test:
>
> } else if (elt[0] != 0) {
> /* empty components can appear in TEXMFCNF; we skip over these */
>
> Sounds reasonable to me. Thomas, Olaf?
>
> Thanks Julian (and all).
Or even more C-ish:
else if (*elt)
:)
Julian