From: Jean-Marc Lasgouttes Date: Wed, 19 Jan 2005 11:46:50 +0000 (+0000) Subject: use the wasysym package when needed X-Git-Tag: 1.6.10~14643 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=add9ff6168bad19a274e1872a1360fe65486f278;p=features.git use the wasysym package when needed git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9498 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index d6b60775c4..2a292bc8c9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-01-19 Jean-Marc Lasgouttes + + * LaTeXFeatures.C: rename feature "wasy" to "wasysym". + 2005-01-11 Jean-Marc Lasgouttes * text.C (setHeightOfRow): add a margin at the top and bottom of diff --git a/src/LaTeXFeatures.C b/src/LaTeXFeatures.C index 9545af96f4..821f248fc4 100644 --- a/src/LaTeXFeatures.C +++ b/src/LaTeXFeatures.C @@ -189,7 +189,7 @@ char const * simplefeatures[] = { "varioref", "prettyref", "float", - "wasy", + "wasysym", "dvipost", "fancybox", "calc", diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 37e3b89eea..e28962fa27 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,5 +1,7 @@ 2005-01-19 Jean-Marc Lasgouttes + * math_symbolinset.C (validate): require wasysym as needed + * math_decorationinset.C (ams): remove again \overleftarrow and \overrightarrow, which do not require amslatex (although amslatex redefines them). diff --git a/src/mathed/math_symbolinset.C b/src/mathed/math_symbolinset.C index d3cc5a1daa..2d07bd6240 100644 --- a/src/mathed/math_symbolinset.C +++ b/src/mathed/math_symbolinset.C @@ -138,6 +138,8 @@ void MathSymbolInset::validate(LaTeXFeatures & features) const { if (sym_->inset == "msa" || sym_->inset == "msb") features.require("amssymb"); + else if (sym_->inset == "wasy") + features.require("wasysym"); }