]> git.lyx.org Git - features.git/commitdiff
* fix for http://bugzilla.lyx.org/show_bug.cgi?id=4584:
authorStefan Schimanski <sts@lyx.org>
Tue, 26 Feb 2008 22:40:59 +0000 (22:40 +0000)
committerStefan Schimanski <sts@lyx.org>
Tue, 26 Feb 2008 22:40:59 +0000 (22:40 +0000)
  "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

index 432f4e7eaf9daebebef95d8738aa8788d59f4da3..73df673861d3f156a727f5d7bd60a23bec17e737 100644 (file)
@@ -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;
                }