From b3b513167fea9741bf2f3597fd988fdddeb29251 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Sat, 20 Jan 2007 17:21:52 +0000 Subject: [PATCH] count correctly git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16785 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/paragraph_pimpl.C | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/paragraph_pimpl.C b/src/paragraph_pimpl.C index 5a192c33cf..9bb747fec2 100644 --- a/src/paragraph_pimpl.C +++ b/src/paragraph_pimpl.C @@ -607,12 +607,13 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const & buf, && i <= size() - 2 && getChar(i + 1) == c) { //os << "\\textcompwordmark{}"; + //column += 19; // Jean-Marc, have a look at // this. I think this works // equally well: os << "\\,{}"; // Lgb - column += 19; + column += 3; } break; } -- 2.39.2