From: André Pönitz Date: Wed, 12 Sep 2001 14:39:55 +0000 (+0000) Subject: allow editing macro names using backspace while typing... X-Git-Tag: 1.6.10~20608 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6c32034ccee8e56c90a2a9ff777638d06f9a6a24;p=features.git allow editing macro names using backspace while typing... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2745 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/math_cursor.C b/src/mathed/math_cursor.C index 454d2d4169..8e70193a4d 100644 --- a/src/mathed/math_cursor.C +++ b/src/mathed/math_cursor.C @@ -469,11 +469,6 @@ void MathCursor::insert(MathArray const & ar) void MathCursor::backspace() { - if (inMacroMode()) { - left(); - return; - } - if (posLeft()) { plainErase(); return;