commit 34a0a72131b918acd50e71d34d59196861108d94
Author: Enrico Forestieri <[email protected]>
Date:   Thu May 1 13:20:04 2025 +0200

    Amend c8491fa0
    
    Fix a small glitch.
    
    (cherry picked from commit 779eb26697a459691318dabbda9b7a66c4da5a6d)
---
 src/mathed/InsetMathMatrix.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/mathed/InsetMathMatrix.cpp b/src/mathed/InsetMathMatrix.cpp
index fd7b368186..46845cf7ad 100644
--- a/src/mathed/InsetMathMatrix.cpp
+++ b/src/mathed/InsetMathMatrix.cpp
@@ -59,6 +59,7 @@ void InsetMathMatrix::maple(MapleStream & os) const
                        }
                        os << ']';
                }
+               os << ')';
        } else {
                os << "matrix(" << int(nrows()) << ',' << int(ncols()) << ",[";
                for (idx_type idx = 0; idx < nargs(); ++idx) {
@@ -66,8 +67,8 @@ void InsetMathMatrix::maple(MapleStream & os) const
                                os << ',';
                        os << cell(idx);
                }
+               os << "])";
        }
-       os << "])";
 }
 
 
-- 
lyx-cvs mailing list
[email protected]
https://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to