From: Stefan Schimanski Date: Tue, 26 Feb 2008 22:40:59 +0000 (+0000) Subject: * fix for http://bugzilla.lyx.org/show_bug.cgi?id=4584: X-Git-Tag: 1.6.10~6060 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=1b0591b28ea99e057f57da0bd237b576477c6df4;p=features.git * 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 --- 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; }