From: André Pönitz Date: Wed, 14 Aug 2002 10:44:48 +0000 (+0000) Subject: somebody should have told me that '!' has a meaning... X-Git-Tag: 1.6.10~18579 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c2dbd0e5d4368ee37b645873c33531d5bcea0eda;p=features.git 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 --- 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"; }