From 05f792610952c155cb9fcbc43241a0c9cb179417 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Fri, 4 Jul 2008 06:01:45 +0000 Subject: [PATCH] * Paragraph.cpp: - correct the kerning between two subsequent '<' or '>' characters. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25436 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Paragraph.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index fd914bc201..ff9d5b6bf1 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -923,11 +923,8 @@ bool Paragraph::Private::latexSpecialT1(char_type const c, odocstream & os, // but we should avoid ligatures if (i + 1 >= int(text_.size()) || text_[i + 1] != c) return true; - os << "\\,{}"; - column += 3; - // Alternative code: - //os << "\\textcompwordmark{}"; - //column += 19; + os << "\\textcompwordmark{}"; + column += 19; return true; case '|': os.put(c); -- 2.39.5