From: André Pönitz Date: Tue, 25 Jun 2002 13:49:29 +0000 (+0000) Subject: make 'det' partially work for math-extern X-Git-Tag: 1.6.10~19017 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d0ae544d61675c0b3d7f41faa5741929d2b83243;p=features.git make 'det' partially work for math-extern git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4475 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/math_exfuncinset.C b/src/mathed/math_exfuncinset.C index 0238540a82..7e0b0fd91b 100644 --- a/src/mathed/math_exfuncinset.C +++ b/src/mathed/math_exfuncinset.C @@ -44,7 +44,10 @@ void MathExFuncInset::normalize(NormalStream & os) const void MathExFuncInset::maplize(MapleStream & os) const { - os << name_ << '(' << cell(0) << ')'; + if (name_ == "det") + os << "linalg[det](" << cell(0) << ')'; + else + os << name_ << '(' << cell(0) << ')'; }