Just remove bogus check

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10257 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-07-16 18:21:14 +00:00
parent 6d8ce8c308
commit 9d651c4b6d
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2005-07-16 Juergen Vigna <jug@lyx.org>
* text.C (singleWidth): Just remove bogus check
2005-07-16 Michael Schmitt <michael.schmitt@teststep.org>
* funcrequest.C (split): avoid reading uninitialized char c
@ -11,7 +15,7 @@
* bufferparams.[Ch] (setPaperStuff): remove setPaperStuff and use a
single papersize variable.
2005-07-16 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
2005-07-16 Juergen Vigna <jug@lyx.org>
* text3.C (dispatch): honor boundary when checking if a cursor
movement has been done

View File

@ -442,8 +442,6 @@ int LyXText::singleWidth(Paragraph const & par,
if (c == Paragraph::META_INSET)
return par.getInset(pos)->width();
if (IsSeparatorChar(c))
c = ' ';
return font_metrics::width(c, font);
}