]> git.lyx.org Git - lyx.git/blobdiff - src/output_plaintext.C
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / output_plaintext.C
index 283b8e19aecb6d37e69a19a2596ed62a47aff42e..d0da1d04dc56c3310efd38fc54b6169842dce883 100644 (file)
@@ -84,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
@@ -206,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;
                        }