]> git.lyx.org Git - lyx.git/commitdiff
Add two FIXMEs for Michael
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 28 Jan 2007 19:36:30 +0000 (19:36 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 28 Jan 2007 19:36:30 +0000 (19:36 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16911 a592a061-630c-0410-9148-cb99ea01b6c8

src/paragraph.C

index f5d29c405e4d4cd19e973d38f4713e55b620d15a..439e42187eee99646fc093438df410cdf227154e 100644 (file)
@@ -1066,6 +1066,8 @@ bool Paragraph::simpleTeXOnePar(Buffer const & buf,
                if (c == ' ') {
                        // Do not print the separation of the optional argument
                        if (i != body_pos - 1) {
+                               // FIXME: change tracking
+                               // Is this correct WRT change tracking?
                                pimpl_->simpleTeXBlanks(os, texrow, i,
                                                       column, font, *style);
                        }
@@ -1091,6 +1093,9 @@ bool Paragraph::simpleTeXOnePar(Buffer const & buf,
                // do not output text which is marked deleted
                // if change tracking output is not desired
                if (output || runningChangeType != Change::DELETED) {
+                       // FIXME: change tracking
+                       // simpleTeXSpecialChars does not output anything if
+                       // c is a space. Is this correct WRT change tracking?
                        OutputParams rp = runparams;
                        rp.free_spacing = style->free_spacing;
                        rp.local_font = &font;