mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Finally fix tex2lyx, lyx2lyx round trip
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9577 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d7b3cae368
commit
1b80079017
@ -1,3 +1,7 @@
|
||||
2005-02-02 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||
|
||||
* text.C (parse_text): Use '\n' and not '\\n' for a newline ;-)
|
||||
|
||||
2005-02-01 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||
|
||||
* text.C (parse_text): Only reset font changes if not at the
|
||||
|
@ -1000,7 +1000,7 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
|
||||
// it here
|
||||
os << s;
|
||||
if (!context.atParagraphStart())
|
||||
os << "\\n\\size "
|
||||
os << "\n\\size "
|
||||
<< context.font.size << "\n";
|
||||
} else if (is_known(next.cs(), known_font_families)) {
|
||||
// s will change the font family, so we must
|
||||
|
Loading…
Reference in New Issue
Block a user