* 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:
Jürgen Spitzmüller 2008-08-19 09:02:07 +00:00
parent b5976cd8fb
commit 733a01eaa3
2 changed files with 9 additions and 0 deletions

View File

@ -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;

View File

@ -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