>>>>> "Joost" == Joost Verburg <[EMAIL PROTECTED]> writes:
Joost> Jean-Marc Lasgouttes wrote: >> Does you have a \chktex_command entry in lyxrc.defaults? What does >> it contain? Joost> Yes, it's empty: Joost> \chktex_command "" Joost> But still the menu item is displayed. What about this patch? JMarc
Index: src/lyxfunc.C =================================================================== --- src/lyxfunc.C (revision 15086) +++ src/lyxfunc.C (working copy) @@ -415,7 +415,7 @@ FuncStatus LyXFunc::getStatus(FuncReques break; case LFUN_RUNCHKTEX: - enable = buf->isLatex() && lyxrc.chktex_command != "none"; + enable = buf->isLatex() && !lyxrc.chktex_command.empty(); break; case LFUN_BUILDPROG:
