From d0ae544d61675c0b3d7f41faa5741929d2b83243 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Tue, 25 Jun 2002 13:49:29 +0000 Subject: [PATCH] make 'det' partially work for math-extern git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4475 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_exfuncinset.C | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) << ')'; } -- 2.39.2