don't insert space when given \rho<space> ...

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3563 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2002-02-18 15:14:02 +00:00
parent 5aadf4d849
commit 0be51952b9

View File

@ -1393,7 +1393,7 @@ bool MathCursor::interpret(char c)
if (c == '\\')
insert(c, LM_TC_TEX);
else
else if (c != ' ')
insert(c, lastcode_);
return true;