From 6ac60832e5091c405d74e4879d339212999ea8f2 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Mon, 27 Dec 2021 12:09:02 +0100 Subject: [PATCH] Add FIXME --- src/mathed/InsetMathGrid.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mathed/InsetMathGrid.cpp b/src/mathed/InsetMathGrid.cpp index 90f53fd54c..aa60d6a948 100644 --- a/src/mathed/InsetMathGrid.cpp +++ b/src/mathed/InsetMathGrid.cpp @@ -772,6 +772,9 @@ docstring InsetMathGrid::eolString(row_type row, bool fragile, if (eol.empty() && row + 1 == nrows() && (nrows() == 1 || !last_eoln)) return docstring(); + // FIXME: As of 2018 (with amendment in LaTeX 2021/06), + // \\ is a robust command and the following protection + // is no longer necessary return (fragile ? "\\protect\\\\" : "\\\\") + eol; }