]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph.C
better latin3&4 support
[lyx.git] / src / paragraph.C
index 25357226a4a8b6be6e94c41ebc7372eccf34c0e1..9ecffaf0e9ef1273fa961d11e9855f23f8506195 100644 (file)
@@ -1951,6 +1951,10 @@ string const Paragraph::asString(Buffer const * buffer,
                value_type const c = getUChar(buffer->params, i);
                if (IsPrintable(c))
                        ost << c;
+               else if (c == META_NEWLINE)
+                       ost << '\n';
+               else if (c == META_HFILL)
+                       ost << '\t'; 
                else if (c == META_INSET) {
                        getInset(i)->ascii(buffer, ost);
                }