]> git.lyx.org Git - lyx.git/blobdiff - src/output_plaintext.C
fix typo in commit 16925
[lyx.git] / src / output_plaintext.C
index e94d5af89c7a6a0699e2117b829ee2f7c5b1dbe8..ae70ac44d14fae4d71e5ec022be9c72b044c6ad0 100644 (file)
@@ -174,33 +174,36 @@ void writePlaintextParagraph(Buffer const & buf,
 
        default: {
                docstring const label = par.params().labelString();
-               os << label << ' ';
-               currlinelen += label.length() + 1;
+               if (!label.empty()) {
+                       os << label << ' ';
+                       currlinelen += label.length() + 1;
+               }
                break;
        }
 
        }
 
-       if (!currlinelen) {
+       if (currlinelen == 0) {
                pair<int, docstring> p = addDepth(depth, ltype_depth);
                os << p.second;
                currlinelen += p.first;
        }
 
-       // this is to change the linebreak to do it by word a bit more
-       // intelligent hopefully! (only in the case where we have a
-       // max runparams.linelength!) (Jug)
-
        docstring word;
 
        for (pos_type i = 0; i < par.size(); ++i) {
+               if (par.isDeleted(i)) // deleted characters don't make much sense in plain text output
+                       continue;
+
                char_type c = par.getUChar(buf.params(), i);
                switch (c) {
                case Paragraph::META_INSET: {
                        InsetBase const * inset = par.getInset(i);
+
                        os << word;
                        currlinelen += word.length();
                        word.erase();
+
                        OutputParams rp = runparams;
                        rp.depth = par.params().depth();
                        if (inset->plaintext(buf, os, rp)) {
@@ -212,7 +215,7 @@ void writePlaintextParagraph(Buffer const & buf,
 
                case ' ':
                        if (runparams.linelen > 0 &&
-                           currlinelen + word.length() > runparams.linelen - 10) {
+                           currlinelen + word.length() > runparams.linelen) {
                                os << '\n';
                                pair<int, docstring> p = addDepth(depth, ltype_depth);
                                os << p.second;
@@ -230,17 +233,17 @@ void writePlaintextParagraph(Buffer const & buf,
 
                default:
                        word += c;
-                       if (runparams.linelen > 0 &&
-                           currlinelen + word.length() > runparams.linelen)
-                       {
-                               os << '\n';
-                               pair<int, docstring> p = addDepth(depth, ltype_depth);
-                               os << p.second;
-                               currlinelen = p.first;
-                       }
                        break;
                }
        }
+
+       if (runparams.linelen > 0 &&
+           currlinelen + word.length() > runparams.linelen) {
+               os << '\n';
+               pair<int, docstring> p = addDepth(depth, ltype_depth);
+               os << p.second;
+               currlinelen = p.first;
+       }
        os << word;
 }