mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* src/Paragraph.cpp:
- use \textquotedbl for straight quotes in T1 encoding (bug 5091). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26212 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9bfc1c9d46
commit
26e3e050a4
@ -972,6 +972,11 @@ bool Paragraph::Private::latexSpecialT1(char_type const c, odocstream & os,
|
||||
case '|':
|
||||
os.put(c);
|
||||
return true;
|
||||
case '\"':
|
||||
// soul.sty breaks with \char`\"
|
||||
os << "\\textquotedbl{}";
|
||||
column += 14;
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user