>As I said, since dvipost _is_ installed in such cases, I'd prefer the >warning "Dvipost is not installed correctly on your system. Re-install >(including pplatex) and reconfigure"
Done. New patches below: --- 1.5.0svn --- Index: converter.C =================================================================== --- converter.C (revision 16897) +++ converter.C (working copy) @@ -596,6 +596,10 @@ buffer.busy(true); buffer.message(_("Running LaTeX...")); + if ( (command.find("latex ")==0) && buffer.params().outputChanges ) { + Alert::warning(_("Changes not highlighted"), _("Dvipost is not installed correctly on your system.\nRe-install (including pplatex) and reconfigure.")); + } + runparams.document_language = buffer.params().language->babel(); // do the LaTeX run(s) --- 1.4.4svn --- Index: converter.C =================================================================== --- converter.C (revision 16845) +++ converter.C (working copy) @@ -579,6 +579,10 @@ buffer.busy(true); buffer.message(_("Running LaTeX...")); + if ( (command.find("latex ")==0) && buffer.params().output_changes ) { + Alert::warning(_("Changes not highlighted"), _("Dvipost is not installed correctly on your system.\nRe-install (including pplatex) and reconfigure.")); + } + runparams.document_language = buffer.params().language->babel(); // do the LaTeX run(s)