* 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:
Jürgen Spitzmüller 2008-08-19 08:51:56 +00:00
parent 9bfc1c9d46
commit 26e3e050a4

View File

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