From 6e42ecf6c037adb7228169f629728d5b6dd10818 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Tue, 26 Jul 2005 11:03:36 +0000 Subject: [PATCH] fix bug 1942 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@10355 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/ChangeLog | 5 +++++ src/mathed/math_factory.C | 5 +++-- status.13x | 2 ++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 86983969ee..b9f5ff78a1 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,8 @@ +2005-07-25 Georg Baum + + * math_factory.C (initSymbols): Don't require wasysym for the wasy + font (bug 1942) + 2005-06-24 Joao Luis Meloni Assirati * math_parser.C (parse_verbatim_{option,item}): Add skipSpaces() diff --git a/src/mathed/math_factory.C b/src/mathed/math_factory.C index cf44fae6de..06af7c5056 100644 --- a/src/mathed/math_factory.C +++ b/src/mathed/math_factory.C @@ -147,8 +147,9 @@ void initSymbols() // store requirements as long as we can if (tmp.inset == "msa" || tmp.inset == "msb") tmp.requires = "amssymb"; - else if (tmp.inset == "wasy") - tmp.requires = "wasysym"; + // See http://bugzilla.lyx.org/show_bug.cgi?id=1942 + // else if (tmp.inset == "wasy") + // tmp.requires = "wasysym"; // symbol font is not available sometimes string symbol_font = "lyxsymbol"; diff --git a/status.13x b/status.13x index 4e6d607e7d..4cbdcc8220 100644 --- a/status.13x +++ b/status.13x @@ -40,6 +40,8 @@ What's new - Do not trim spaces from either end of the find and replace strings in the Edit->Find & Replace... dialog. [XForms only]. +- Don't load the wasysym package automatically anymore (bug 1942) + * Configuration/Installation: - compile without STL compatibilty support, since some systems do that