Add FIXME

This commit is contained in:
Juergen Spitzmueller 2021-12-27 12:09:02 +01:00
parent a5b7eeacaa
commit 6ac60832e5

View File

@ -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;
}