From 78c091d70b248073e74e7714e44ef2497e44c513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Thu, 3 Jan 2002 12:04:10 +0000 Subject: [PATCH] small bug fix from Martin git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3281 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_cursor.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/math_cursor.C b/src/mathed/math_cursor.C index 2cc8113baf..2a7d6e0b6d 100644 --- a/src/mathed/math_cursor.C +++ b/src/mathed/math_cursor.C @@ -1410,8 +1410,8 @@ bool MathCursor::interpret(char c) } // no special circumstances, so insert the character without any fuss - insert(c, lastcode_); lastcode_ = LM_TC_MIN; + insert(c, lastcode_); return true; }