On Tue, Feb 26, 2008 at 10:41:01PM -0000, [EMAIL PROTECTED] wrote: > Author: sts > Date: Tue Feb 26 23:40:59 2008 > New Revision: 23263 > > URL: http://www.lyx.org/trac/changeset/23263 > Log: > * fix for http://bugzilla.lyx.org/show_bug.cgi?id=4584: > "not possible to use the command \tag*" > > Modified: > lyx-devel/trunk/src/mathed/InsetMathNest.cpp > > Modified: lyx-devel/trunk/src/mathed/InsetMathNest.cpp > URL: > http://www.lyx.org/trac/file/lyx-devel/trunk/src/mathed/InsetMathNest.cpp?rev=23263 > ============================================================================== > --- lyx-devel/trunk/src/mathed/InsetMathNest.cpp (original) > +++ lyx-devel/trunk/src/mathed/InsetMathNest.cpp Tue Feb 26 23:40:59 2008 > @@ -1333,7 +1333,7 @@ > return true; > } > > - if (isAlphaASCII(c)) { > + if (isAlphaASCII(c) || c == '*') {
Are you sure this parses '\a*b' the way it did before? Andre'