mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
Fix bug #6631: tex2lyx doesn't handle \textquotedbl{} nicely.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34010 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b8fb599130
commit
ba97587b16
@ -2265,6 +2265,12 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
|
||||
skip_braces(p);
|
||||
}
|
||||
|
||||
else if (t.cs() == "textquotedbl") {
|
||||
context.check_layout(os);
|
||||
os << "\"";
|
||||
skip_braces(p);
|
||||
}
|
||||
|
||||
else if (t.cs() == "@" && p.next_token().asInput() == ".") {
|
||||
context.check_layout(os);
|
||||
os << "\\SpecialChar \\@.\n";
|
||||
|
Loading…
Reference in New Issue
Block a user