* src/LaTeXFeatures.cpp:

- fix definition of \lyxadded and \lyxdeleted (bug 3817).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18703 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-06-07 18:17:23 +00:00
parent 2dbfe820d8
commit e91029ae51

View File

@ -670,8 +670,8 @@ string const LaTeXFeatures::getMacros() const
macros << "\\providecolor{lyxdeleted}{rgb}{"
<< cdel.r/255 << ',' << cdel.g/255 << ',' << cdel.b/255 << "}\n";
macros << "\\newcommand{\\lyxadded}[3]{\\color{lyxadded}{#3}}\n"
<< "\\newcommand{\\lyxdeleted}[3]{\\color{lyxdeleted}{\\st{#3}}}\n";
macros << "\\newcommand{\\lyxadded}[3]{{\\color{lyxadded}#3}}\n"
<< "\\newcommand{\\lyxdeleted}[3]{{\\color{lyxdeleted}\\st{#3}}}\n";
}
if (mustProvide("ct-none")) {
macros << changetracking_none_def;