mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
* 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
This commit is contained in:
parent
3c944f7bf2
commit
1b0591b28e
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user