From 1b0591b28ea99e057f57da0bd237b576477c6df4 Mon Sep 17 00:00:00 2001 From: Stefan Schimanski Date: Tue, 26 Feb 2008 22:40:59 +0000 Subject: [PATCH] * fix for http://bugzilla.lyx.org/show_bug.cgi?id=4584: "not possible to use the command \tag*" git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23263 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/InsetMathNest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/InsetMathNest.cpp b/src/mathed/InsetMathNest.cpp index 432f4e7eaf..73df673861 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -1333,7 +1333,7 @@ bool InsetMathNest::interpretChar(Cursor & cur, char_type c) return true; } - if (isAlphaASCII(c)) { + if (isAlphaASCII(c) || c == '*') { cur.activeMacro()->setName(name + docstring(1, c)); return true; } -- 2.39.5