From c2dbd0e5d4368ee37b645873c33531d5bcea0eda Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 14 Aug 2002 10:44:48 +0000 Subject: [PATCH] somebody should have told me that '!' has a meaning... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4966 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_extern.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mathed/math_extern.C b/src/mathed/math_extern.C index 2daae01adc..ae8a0fee85 100644 --- a/src/mathed/math_extern.C +++ b/src/mathed/math_extern.C @@ -155,11 +155,9 @@ void extractMatrices(MathArray & ar) } // second pass for AMS "pmatrix" etc - for (MathArray::size_type i = 0; i < ar.size(); ++i) { + for (MathArray::size_type i = 0; i < ar.size(); ++i) if (ar[i]->asAMSArrayInset()) - continue; - ar[i] = MathAtom(new MathMatrixInset(*(ar[i]->asGridInset()))); - } + ar[i] = MathAtom(new MathMatrixInset(*(ar[i]->asGridInset()))); //lyxerr << "\nMatrices to: " << ar << "\n"; } @@ -786,6 +784,7 @@ void extractLims(MathArray & ar) void extractStructure(MathArray & ar) { + //lyxerr << "\nStructure from: " << ar << "\n"; extractIntegrals(ar); extractSums(ar); splitScripts(ar); @@ -798,6 +797,7 @@ void extractStructure(MathArray & ar) extractExps(ar); extractLims(ar); extractStrings(ar); + //lyxerr << "\nStructure to: " << ar << "\n"; } -- 2.39.2