* Paragraph.cpp:

- correct the kerning between two subsequent '<' or '>' characters.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@25437 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2008-07-04 06:03:33 +00:00
parent fd5e171bad
commit 2c674129b9
2 changed files with 3 additions and 8 deletions

View File

@ -901,14 +901,8 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const & buf,
if ((c == '>' || c == '<')
&& 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 += 3;
os << "\\textcompwordmark{}";
column += 19;
}
break;
}

View File

@ -92,6 +92,7 @@ What's new
- Fix encoding errors when typewriter font is used (bug 4727).
- Correct the kerning between two subsequent '<' or '>' characters.
* USER INTERFACE