[LyX/master] Properly terminate \\noindent
Juergen Spitzmueller
spitz at lyx.org
Sun Oct 31 08:34:15 UTC 2021
commit 18a91852e16105cabe59a4de2787a00569fdf365
Author: Juergen Spitzmueller <spitz at lyx.org>
Date: Sun Oct 31 09:58:10 2021 +0100
Properly terminate \\noindent
---
src/Paragraph.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp
index 709507b..1b58f55 100644
--- a/src/Paragraph.cpp
+++ b/src/Paragraph.cpp
@@ -2356,7 +2356,7 @@ int Paragraph::Private::startTeXParParams(BufferParams const & bparams,
// have indentation, that are PassThru or centered.
if (canindent && params_.noindent() && owner_->isPartOfTextSequence()
&& !layout_->pass_thru && curAlign != LYX_ALIGN_CENTER) {
- os << "\\noindent ";
+ os << "\\noindent" << termcmd;
column += 10;
}
More information about the lyx-cvs
mailing list