On Wed, Jul 17, 2002 at 01:02:27PM +0100, Angus Leeming wrote:
> The question is: what is the syntax that should be used to REMOVE a converter 
> that is defined in lyxrc.defaults? 
> 
> lyxrc.C outputs changed converters so:
> 
>               // New/modifed converters
>               for (Converters::const_iterator cit = system_converters.begin();
>                    cit != system_converters.end(); ++cit)
>                       if (!converters.getConverter(cit->from, cit->to))
>                               os << "\\converter \"" << cit->from
>                                  << "\" \"" << cit->to << "\" \"\" \"\"\n";
> 
> FormPreferences simply removes a converter from the list of local converters. 
> It does not "none" it, so the removal of this converter is not saved.

As I already written, either "none" or "" (empty string) can be used.
The code above uses the latter, so removal of converters is saved.

Reply via email to