From: Enrico Forestieri Date: Sun, 9 Nov 2014 20:33:53 +0000 (+0100) Subject: Fix issue with CAS. X-Git-Tag: 2.1.3~93 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=564447057640dbf63e4368fde8efc523c3132703;p=features.git Fix issue with CAS. See http://thread.gmane.org/gmane.editors.lyx.devel/153516 This regression was due to a thinko in [43f6b167/lyxgit]. --- diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index daf43feef6..9657475d2e 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -1346,7 +1346,7 @@ void InsetMathHull::doExtern(Cursor & cur, FuncRequest & func) MathData ar; if (cur.inMathed() && cur.selection()) { asArray(grabAndEraseSelection(cur), ar); - } else if (!pos == cur.cell().empty()) { + } else if (pos == cur.cell().size()) { ar = cur.cell(); lyxerr << "use whole cell: " << ar << endl; } else { diff --git a/status.21x b/status.21x index c38e3b4778..36f2469491 100644 --- a/status.21x +++ b/status.21x @@ -96,6 +96,8 @@ What's new - Disallow to insert program listings to footnotes and margin notes (bug 9321). +- Fix computer algebra system computations in formulas with '=' signs. + * INTERNALS