mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +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/branches/BRANCH_1_5_X@26213 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b5976cd8fb
commit
733a01eaa3
@ -952,6 +952,12 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const & buf,
|
||||
break;
|
||||
|
||||
case '\"':
|
||||
if (lyxrc.fontenc == "T1") {
|
||||
// soul.sty breaks with \char`\"
|
||||
os << "\\textquotedbl{}";
|
||||
column += 14;
|
||||
break;
|
||||
}
|
||||
os << "\\char`\\\"{}";
|
||||
column += 9;
|
||||
break;
|
||||
|
@ -65,6 +65,9 @@ What's new
|
||||
|
||||
- Fix inputenc error with ligature glyphs in utf8 encoding (bug 5086).
|
||||
|
||||
- Fix LaTeX error with deleted straight quotes in change tracking mode
|
||||
(bug 5091; only fixed for T1 font encoding).
|
||||
|
||||
|
||||
* USER INTERFACE
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user