X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Foutput_plaintext.C;h=d0da1d04dc56c3310efd38fc54b6169842dce883;hb=37e82a546392d43f787826b85481a11f2a27af15;hp=09329d20b5e5ab8432e9de27cb9040f341df856f;hpb=db707dab045d01f186a07c7da75d5b22de4e87c3;p=lyx.git diff --git a/src/output_plaintext.C b/src/output_plaintext.C index 09329d20b5..d0da1d04dc 100644 --- a/src/output_plaintext.C +++ b/src/output_plaintext.C @@ -25,9 +25,6 @@ #include "support/gzstream.h" #include "support/lstrings.h" -#ifdef HAVE_LOCALE -#endif - using lyx::support::ascii_lowercase; using lyx::support::compare_ascii_no_case; using lyx::support::compare_no_case; @@ -87,7 +84,7 @@ void asciiParagraph(Buffer const & buf, { int ltype = 0; Paragraph::depth_type ltype_depth = 0; - bool ref_printed = false; + static bool ref_printed = false; Paragraph::depth_type depth = par.params().depth(); // First write the layout @@ -209,7 +206,9 @@ void asciiParagraph(Buffer const & buf, currlinelen += word.length(); word.erase(); } - if (inset->plaintext(buf, os, runparams)) { + OutputParams rp = runparams; + rp.depth = par.params().depth(); + if (inset->plaintext(buf, os, rp)) { // to be sure it breaks paragraph currlinelen += runparams.linelen; }