]> git.lyx.org Git - lyx.git/commitdiff
* src/Paragraph.cpp:
authorJürgen Spitzmüller <spitz@lyx.org>
Tue, 19 Aug 2008 08:51:56 +0000 (08:51 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Tue, 19 Aug 2008 08:51:56 +0000 (08:51 +0000)
- 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

src/Paragraph.cpp

index f51ebc2501651975ea79f7c4f9231ee68f2003ef..026109683737e4279511e3b32d8ae86169dad875 100644 (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;
        }