Thomas Dickey dixit:

>* if iconv_open() using transliteration fails, retry without the
>  transliteration feature -TG

Misalignment:

  957             if (cd == (iconv_t) - 1)

This should obviously be a negative number one, casted, and I think
that indent found a real buglet here; changing this to

  957             if (cd == (iconv_t)(-1)) 

bye,
//mirabile
-- 
I believe no one can invent an algorithm. One just happens to hit upon it
when God enlightens him. Or only God invents algorithms, we merely copy them.
If you don't believe in God, just consider God as Nature if you won't deny
existence.              -- Coywolf Qi Hunt


_______________________________________________
Lynx-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/lynx-dev

Reply via email to