From 935d1a3221c99915563707e970364ef6a1436151 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Mon, 16 Nov 2009 14:11:25 +0000 Subject: [PATCH] Clarify comment. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32051 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/MathData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/MathData.cpp b/src/mathed/MathData.cpp index 7b112e9beb..40adc50411 100644 --- a/src/mathed/MathData.cpp +++ b/src/mathed/MathData.cpp @@ -380,7 +380,7 @@ void MathData::drawT(TextPainter & pain, int x, int y) const void MathData::updateMacros(Cursor * cur, MacroContext const & mc) { // If we are editing a macro, we cannot update it immediately, - // as no undo steps will be recorded (bug 6208). + // otherwise wrong undo steps will be recorded (bug 6208). InsetMath const * inmath = cur ? cur->inset().asInsetMath() : 0; MathMacro const * inmacro = inmath ? inmath->asMacro() : 0; docstring const edited_name = inmacro ? inmacro->name() : docstring();