commit 21005cbd6f32f9b27c022db96df0f0c9dfef0df2
Author: Juergen Spitzmueller <[email protected]>
Date: Mon Jun 25 12:01:26 2018 +0200
Fix definition of boolean
---
src/insets/InsetTabular.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp
index ee454fb..29c99bb 100644
--- a/src/insets/InsetTabular.cpp
+++ b/src/insets/InsetTabular.cpp
@@ -2773,7 +2773,8 @@ void Tabular::TeXRow(otexstream & os, row_type row,
void Tabular::latex(otexstream & os, OutputParams const & runparams) const
{
- bool const is_tabular_star = !tabular_width.zero() &&
!hasVarwidthColumn();
+ bool const is_tabular_star = !is_long_tabular && !tabular_width.zero()
+ && !hasVarwidthColumn();
bool const is_xltabular = is_long_tabular
&& (hasVarwidthColumn() || !tabular_width.zero());
TexRow::RowEntry pos = TexRow::textEntry(runparams.lastid,
runparams.lastpos);