]> git.lyx.org Git - lyx.git/blob - src/mathed/math_parser.C
removed a warning from screen and added CFLAGS in lyx.spec.in.
[lyx.git] / src / mathed / math_parser.C
1 /*
2  *  File:        math_parser.C
3  *  Purpose:     Parser for mathed
4  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
5  *  Created:     January 1996
6  *  Description: Parse LaTeX2e math mode code.
7  *
8  *  Dependencies: Xlib, XForms
9  *
10  *  Copyright: (c) 1996, Alejandro Aguilar Sierra
11  *
12  *   Version: 0.8beta.
13  *
14  *   You are free to use and modify this code under the terms of
15  *   the GNU General Public Licence version 2 or later.
16  */
17
18 #include <config.h>
19 #include <stdlib.h>
20 #include <ctype.h>
21
22 #ifdef __GNUG__
23 #pragma implementation "math_parser.h"
24 #endif
25
26 #include "math_parser.h"
27 #include "math_iter.h"
28 #include "math_inset.h"
29 #include "math_macro.h"
30 #include "math_root.h"
31 #include "debug.h"
32
33 enum {
34         FLAG_BRACE      = 1,    //  A { needed
35         FLAG_BRACE_ARG  = 2,    //  Next { is argument
36         FLAG_BRACE_OPT  = 4,    //  Optional {
37         FLAG_BRACE_LAST = 8,    //  Last } ends the parsing process
38         FLAG_BRACK_ARG  = 16,   //  Optional [
39         FLAG_RIGHT      = 32,      //  Next right ends the parsing process
40         FLAG_END        = 64,      //  Next end ends the parsing process
41         FLAG_BRACE_FONT = 128,  //  Next } closes a font
42         FLAG_BRACK_END  = 256   // Next ] ends the parsing process
43 };
44
45 YYSTYPE yylval;
46
47
48 static short mathed_env = LM_EN_INTEXT;
49
50 char *mathed_label = 0;
51
52 char const *latex_mathenv[] = { 
53    "math", 
54    "displaymath", 
55    "equation", 
56    "eqnarray*",
57    "eqnarray",
58    "array"
59 };
60
61
62 char const *latex_mathspace[] = {
63    "!", ",", ":", ";", "quad", "qquad"
64 };
65    
66 char const *latex_special_chars = "#$%&_{}";
67             
68 // These are lexical codes, not semantic
69 enum lexcode_enum {
70    LexNone,
71    LexESC,
72    LexAlpha,
73    LexDigit,
74    LexBOP,         // Binary operators or relations
75    LexMathSpace,
76    LexOpen,
77    LexClose,
78    LexComment,
79    LexArgument,
80    LexSpace,
81    LexNewLine,
82    LexOther,
83    LexSelf
84 };
85
86 static lexcode_enum lexcode[256];  
87 static char yytext[256];
88 static int yylineno;
89 static FILE *yyin;
90 static bool yy_mtextmode=false;
91             
92 inline
93 char *strnew(char const* s)
94 {
95         char *s1 = new char[strlen(s)+1]; // this leaks when not delete[]'ed
96         strcpy(s1, s);
97         return s1;
98 }
99
100
101 static void mathPrintError(char const *msg) 
102 {
103         lyxerr << "Line ~" << yylineno << ": Math parse error: "
104                << msg << endl;
105 }
106
107
108 static void LexInitCodes()
109 {
110    int i;
111    
112    for (i=0;  i<=255; i++)     {
113      if (isalpha(i)) lexcode[i] = LexAlpha;
114      else if (isdigit(i)) lexcode[i] = LexDigit;
115      else if (isspace(i)) lexcode[i] = LexSpace;
116      else lexcode[i] = LexNone;
117    }
118     
119    lexcode['\t'] = lexcode['\f'] = lexcode[' '] = LexSpace;
120    lexcode['\n'] = LexNewLine;
121    lexcode['%'] = LexComment;
122    lexcode['#'] = LexArgument;
123    lexcode['+'] = lexcode['-'] = lexcode['*'] = lexcode['/'] = 
124    lexcode['<'] = lexcode['>'] = lexcode['='] = LexBOP;
125    
126    lexcode['!'] = lexcode[','] = lexcode[':'] = lexcode[';'] = LexMathSpace;
127    lexcode['('] = lexcode[')'] = lexcode['|'] = lexcode['.'] = lexcode['?'] = LexOther; 
128    lexcode['\'']= LexAlpha;
129    
130    lexcode['['] = lexcode[']'] = lexcode['^'] = lexcode['_'] = 
131    lexcode['&'] = LexSelf;  
132    
133    lexcode['\\'] = LexESC;
134    lexcode['{'] = LexOpen;
135    lexcode['}'] = LexClose;
136 }
137
138 static char LexGetArg(char lf, bool accept_spaces=false)
139 {
140    char c, rg, *p = &yytext[0];
141    int bcnt =1;
142    
143    while (!feof(yyin)) {
144       c = getc(yyin); 
145       if (c>' ') {
146          if (!lf) lf = c; else
147          if (c!=lf)
148                  lyxerr << "Math parse error: unexpected '"
149                         << c << "'" << endl;
150          break;
151       }
152    }
153    rg = (lf=='{') ? '}': ((lf=='[') ? ']': ((lf=='(') ? ')': 0));
154    if (!rg) {
155            lyxerr << "Math parse error: unknown bracket '"
156                   << lf << "'" << endl;
157       return '\0';
158    } 
159    do {
160       c = getc(yyin); 
161       if (c==lf) bcnt++;
162       if (c==rg) bcnt--;
163       if ((c>' ' || (c==' ' && accept_spaces)) && bcnt>0) *(p++) = c;
164    } while (bcnt>0 && !feof(yyin));
165    *p = '\0';
166    return rg;
167 }
168
169 static int yylex(void)
170 {
171    static int init_done = 0;
172    unsigned char c;
173    
174    if (!init_done) LexInitCodes();
175    
176    while (!feof(yyin)) { 
177       c = getc(yyin);
178        
179       if (yy_mtextmode && c==' ') {
180           yylval.i=' ';
181           return LM_TK_ALPHA;
182       }
183        
184        if (lexcode[c]==LexNewLine) {
185            yylineno++; 
186            continue;
187        }
188          
189       if (lexcode[c]==LexComment) 
190         do c = getc(yyin); while (c!='\n' % !feof(yyin));  // eat comments
191     
192       if (lexcode[c]==LexDigit || lexcode[c]==LexOther || lexcode[c]==LexMathSpace) 
193         { yylval.i= c; return LM_TK_STR; }
194       if (lexcode[c]==LexAlpha) { yylval.i=c; return LM_TK_ALPHA; }
195       if (lexcode[c]==LexBOP)   { yylval.i=c; return LM_TK_BOP; }
196       if (lexcode[c]==LexSelf)  { return c; }   
197       if (lexcode[c]==LexArgument)   { 
198           c = getc(yyin);
199           yylval.i = c - '0';
200           return LM_TK_ARGUMENT; 
201       }
202       if (lexcode[c]==LexOpen)   { return LM_TK_OPEN; }
203       if (lexcode[c]==LexClose)   { return LM_TK_CLOSE; }
204       
205       if (lexcode[c]==LexESC)   {
206          c = getc(yyin);
207          if (c=='\\')   { return LM_TK_NEWLINE; }
208          if (c=='(')    { yylval.i = LM_EN_INTEXT; return LM_TK_BEGIN; }
209          if (c==')')    { yylval.i = LM_EN_INTEXT; return LM_TK_END; }
210          if (c=='[')    { yylval.i = LM_EN_DISPLAY; return LM_TK_BEGIN; }
211          if (c==']')    { yylval.i = LM_EN_DISPLAY; return LM_TK_END; }
212          if (strchr(latex_special_chars, c)) {
213              yylval.i = c;
214              return LM_TK_SPECIAL;
215          }  
216          if (lexcode[c]==LexMathSpace) {
217             int i;
218             for (i=0; i<4 && c!=latex_mathspace[i][0]; i++);
219             yylval.i = (i<4) ? i: 0; 
220             return LM_TK_SPACE; 
221          }
222          if (lexcode[c]==LexAlpha || lexcode[c]==LexDigit) {
223             char* p = &yytext[0];
224             while (lexcode[c]==LexAlpha || lexcode[c]==LexDigit) {
225                *p = c;
226                c = getc(yyin);
227                p++;
228             }
229             *p = '\0';
230             if (!feof(yyin)) ungetc(c, yyin);
231             latexkeys *l = in_word_set (yytext, strlen(yytext));
232             if (l) {
233                if (l->token==LM_TK_BEGIN || l->token==LM_TK_END) { 
234                   int i;
235                   LexGetArg('{');
236 //                for (i=0; i<5 && strncmp(yytext, latex_mathenv[i],
237 //                              strlen(latex_mathenv[i])); i++);
238                   
239                   for (i=0; i<6 && strcmp(yytext, latex_mathenv[i]); i++);
240                   yylval.i = i;
241                } else
242                if (l->token==LM_TK_SPACE) 
243                  yylval.i = l->id;
244                else
245                  yylval.l = l;
246                return l->token;
247             } else { 
248                yylval.s = yytext;
249                return LM_TK_UNDEF;
250             }
251          }
252       }
253    }
254    return 0;
255 }
256
257 int parse_align(char *hor, char *)
258 {    
259    char *c;
260
261    int nc = 0;
262    for (c=hor; c && *c>' '; c++) nc++;
263    return nc;
264 }
265
266 // Accent hacks only for 0.12. Stolen from Cursor.
267 int accent = 0;
268 int nestaccent[8];
269
270 void setAccent(int ac)
271 {
272         if (ac > 0 && accent < 8) {
273                 nestaccent[accent++] = ac;
274         } else
275           accent = 0;  // consumed!
276 }
277
278
279 MathedInset *doAccent(byte c, MathedTextCodes t)
280 {
281         MathedInset *ac = 0;
282         
283         for (int i=accent-1; i>=0; i--) {
284                 if (i==accent-1)
285                   ac = new MathAccentInset(c, t, nestaccent[i]);
286                 else 
287                   ac = new MathAccentInset(ac, nestaccent[i]);
288         }
289         accent = 0;  // consumed!
290         
291         return ac;
292 }
293
294
295 MathedInset *doAccent(MathedInset *p)
296 {
297         MathedInset *ac = 0;
298         
299         for (int i=accent-1; i>=0; i--) {
300                 if (i==accent-1)
301                   ac = new MathAccentInset(p, nestaccent[i]);
302                 else 
303                   ac = new MathAccentInset(ac, nestaccent[i]);
304         }
305         accent = 0;  // consumed!
306         
307         return ac;
308 }
309
310
311
312
313 LyxArrayBase *mathed_parse(unsigned flags, LyxArrayBase *array, MathParInset **mtx)
314 {
315    int t = yylex(), tprev = 0;
316    bool panic = false;
317    static int plevel = -1;
318    static int size = LM_ST_TEXT;
319    MathedTextCodes varcode = LM_TC_VAR;
320    MathedInset* binset = 0;
321    static MathMacroTemplate *macro=0;
322    
323    int brace = 0;
324    int acc_brace = 0;
325    int acc_braces[8];
326    MathParInset *mt = (mtx) ? *mtx: 0;//(MathParInset*)0;
327     MathedRowSt *crow = (mt) ? mt->getRowSt(): 0;
328
329    plevel++;
330    if (!array) array = new LyxArrayBase;
331    MathedIter data(array);
332    while (t) {
333       if ((flags & FLAG_BRACE) && t != LM_TK_OPEN) {
334          if ((flags & FLAG_BRACK_ARG) && t=='[') {
335          }
336          else {
337              mathPrintError("Expected {. Maybe you forgot to enclose an argument in {}");
338             panic = true;
339             break;
340          }
341       }
342     MathedInsetTypes fractype = LM_OT_FRAC;
343     switch (t) {
344     case LM_TK_ALPHA:
345       {
346          if (accent) {
347              data.Insert(doAccent(yylval.i, varcode));
348          } else
349             data.Insert (yylval.i, varcode);  //LM_TC_VAR);
350          break;
351       }
352     case LM_TK_ARGUMENT:
353       {
354           if (macro) {
355               data.Insert(macro->getMacroPar(yylval.i-1), LM_TC_INSET);
356           } 
357           break;
358       } 
359     case LM_TK_NEWCOMMAND:
360       {
361           int na = 0; 
362
363           LexGetArg('{');
364           // This name lives until quitting, for that reason
365           // I didn't care on deleting explicitly. Later I will.
366           char const *name = strnew(&yytext[1]);
367           // ugly trick to be removed soon (lyx3)
368           char c = getc(yyin);
369           ungetc(c, yyin);
370           if (c=='[') {
371               LexGetArg('[');
372               na = atoi(yytext);
373           }  
374           macro = new MathMacroTemplate(name, na);
375           flags = FLAG_BRACE|FLAG_BRACE_LAST;
376           *mtx = macro;
377           macro->SetData(array);
378           break;
379       }
380     case LM_TK_SPECIAL:
381       {   
382           data.Insert (yylval.i, LM_TC_SPECIAL);
383           break;
384       }
385     case LM_TK_STR:
386       {   
387           if (accent) {
388                   data.Insert(doAccent(yylval.i, LM_TC_CONST));
389           } else
390             data.Insert (yylval.i, LM_TC_CONST);
391           break;
392       }
393     case LM_TK_OPEN:
394       {
395         brace++;
396         if  (accent && tprev==LM_TK_ACCENT) {
397             acc_braces[acc_brace++] = brace;
398             break;
399         }
400         if (flags & FLAG_BRACE_OPT) {
401            flags &= ~FLAG_BRACE_OPT;
402            flags |= FLAG_BRACE;
403         }
404                  
405         if (flags & FLAG_BRACE)
406           flags &= ~FLAG_BRACE;
407          else {
408             data.Insert ('{', LM_TC_TEX);
409          }
410         break;
411       }
412     case LM_TK_CLOSE:
413       {
414          brace--;        
415          if (brace < 0) {
416             mathPrintError("Unmatching braces");
417             panic = true;
418             break;
419          }
420          if (acc_brace && brace==acc_braces[acc_brace-1]-1) {
421              acc_brace--;
422              break;
423          }
424          if (flags & FLAG_BRACE_FONT) {
425             varcode = LM_TC_VAR;
426             yy_mtextmode = false;
427             flags &= ~FLAG_BRACE_FONT;
428             break;
429          }
430          if (brace == 0 && (flags & FLAG_BRACE_LAST)) {
431             plevel--;
432             return array;
433          } else {
434             data.Insert ('}', LM_TC_TEX);
435          }
436          break;
437       }
438
439     case '[':
440       {
441          if (flags & FLAG_BRACK_ARG) {
442            flags &= ~FLAG_BRACK_ARG;
443            char rg=LexGetArg('[');
444            if (rg!=']') {
445               mathPrintError("Expected ']'");
446               panic = true;
447               break;
448            }       
449 //         if (arg) strcpy(arg, yytext);
450         } else
451           data.Insert ('[');
452         break;
453       }
454     case ']':
455       {
456           if (flags & FLAG_BRACK_END) {
457               plevel--;
458               return array;
459           } else
460             data.Insert (']');
461         break;
462       }
463
464     case '^':
465       {  
466          MathParInset *p = new MathParInset(size, "", LM_OT_SCRIPT);
467          LyxArrayBase * ar = mathed_parse(FLAG_BRACE_OPT|FLAG_BRACE_LAST, 0);
468          p->SetData(ar);
469 //       lyxerr << "UP[" << p->GetStyle() << "]" << endl;
470          data.Insert (p, LM_TC_UP);
471          break;
472       }
473     case '_':
474       {
475          MathParInset *p = new MathParInset(size, "", LM_OT_SCRIPT);
476          LyxArrayBase * ar = mathed_parse(FLAG_BRACE_OPT|FLAG_BRACE_LAST, 0);
477          p->SetData(ar);
478          data.Insert (p, LM_TC_DOWN);
479          break;
480       }
481
482     case LM_TK_LIMIT:
483       {
484          if (binset) {
485             binset->SetLimits((bool)(yylval.l->id));
486             binset = 0;
487          }
488          break;
489       }
490       
491     case '&':    // Tab
492       {
493          if ((flags & FLAG_END) && mt && data.getCol()<mt->GetColumns()-1) {
494              data.setNumCols(mt->GetColumns());
495              data.Insert('T', LM_TC_TAB);
496          } else 
497             mathPrintError("Unexpected tab");
498          // debug info. [made that conditional -JMarc]
499          if (lyxerr.debugging(Debug::MATHED))
500                  lyxerr << data.getCol() << " " << mt->GetColumns() << endl;
501         break;
502       }
503     case LM_TK_NEWLINE:
504       {
505           if (mt && (flags & FLAG_END)) {
506               if (mt->Permit(LMPF_ALLOW_CR)) {
507                   if (crow) {
508                           crow->setNext(new MathedRowSt(mt->GetColumns()+1)); // this leaks
509                       crow = crow->getNext();
510                   }
511                   data.Insert('K', LM_TC_CR);
512               } else 
513                 mathPrintError("Unexpected newline");
514           }
515           break;
516       }
517     case LM_TK_BIGSYM:  
518       {
519          binset = new MathBigopInset(yylval.l->name,yylval.l->id);
520          data.Insert(binset);   
521          break;
522       }
523     case LM_TK_SYM:
524       {
525          if (yylval.l->id < 256) {
526             MathedTextCodes tc = MathIsBOPS(yylval.l->id) ? LM_TC_BOPS: LM_TC_SYMB;
527             if (accent) {
528                 data.Insert(doAccent(yylval.l->id, tc));
529             } else
530             data.Insert (yylval.l->id, tc);
531          } else {
532             MathFuncInset *bg = new MathFuncInset(yylval.l->name);
533              if (accent) {
534                      data.Insert(doAccent(bg));
535              } else
536              data.Insert(bg, true);     
537          }
538          break;
539       }
540     case LM_TK_BOP:
541       {
542          if (accent) {
543                  data.Insert(doAccent(yylval.i, LM_TC_BOP));
544           } else
545             data.Insert (yylval.i, LM_TC_BOP);
546          break;
547       }
548     case LM_TK_STY:
549       {
550           if (mt) {
551               mt->UserSetSize(yylval.l->id);
552           }
553           break; 
554       }
555     case LM_TK_SPACE:
556       {
557          if (yylval.i>=0) {
558             MathSpaceInset *sp = new MathSpaceInset(yylval.i);
559             data.Insert(sp);
560          }
561          break;
562       }    
563     case LM_TK_DOTS:
564       {
565          MathDotsInset *p = new MathDotsInset(yylval.l->name, yylval.l->id);
566          data.Insert(p);
567          break;
568       }     
569     case LM_TK_STACK:
570        fractype = LM_OT_STACKREL;
571     case LM_TK_FRAC:
572       {
573          MathFracInset *fc = new MathFracInset(fractype);
574          LyxArrayBase* num = mathed_parse(FLAG_BRACE|FLAG_BRACE_LAST);
575          LyxArrayBase* den = mathed_parse(FLAG_BRACE|FLAG_BRACE_LAST);
576          fc->SetData(num, den);
577          data.Insert(fc, LM_TC_ACTIVE_INSET);
578          break;
579       }
580     case LM_TK_SQRT:
581       {     
582          MathParInset *rt;
583           
584          char c = getc(yyin);
585           
586          if (c=='[') {
587              rt = new MathRootInset(size);
588              rt->setArgumentIdx(0);
589              rt->SetData(mathed_parse(FLAG_BRACK_END, 0, &rt));
590              rt->setArgumentIdx(1);
591          } else {
592              ungetc(c, yyin);
593              rt = new MathSqrtInset(size);
594          }
595          rt->SetData(mathed_parse(FLAG_BRACE|FLAG_BRACE_LAST, 0, &rt));
596          data.Insert(rt, LM_TC_ACTIVE_INSET);
597          break;
598       }
599        
600     case LM_TK_LEFT:
601       {
602          int lfd, rgd;
603          lfd=yylex();
604          if (lfd==LM_TK_SYM || lfd==LM_TK_STR || lfd==LM_TK_BOP|| lfd==LM_TK_SPECIAL)
605            lfd = (lfd==LM_TK_SYM) ? yylval.l->id: yylval.i;
606 //       lyxerr << "L[" << lfd << " " << lfd << "]";
607          LyxArrayBase* a = mathed_parse(FLAG_RIGHT);
608          rgd=yylex();
609 //       lyxerr << "R[" << rgd << "]";
610          if (rgd==LM_TK_SYM || rgd==LM_TK_STR || rgd==LM_TK_BOP || rgd==LM_TK_SPECIAL)
611            rgd = (rgd==LM_TK_SYM) ? yylval.l->id: yylval.i;      
612          MathDelimInset *dl = new MathDelimInset(lfd, rgd);
613          dl->SetData(a);
614          data.Insert(dl, LM_TC_ACTIVE_INSET);
615 //       lyxerr << "RL[" << lfd << " " << rgd << "]";
616          break;
617       }
618     case LM_TK_RIGHT:
619       {
620          if (flags & FLAG_RIGHT) { 
621             plevel--;
622             return array;
623          } else {
624             mathPrintError("Unmatched right delimiter");
625 //          panic = true;
626          }
627          break;
628       }
629
630     case LM_TK_FONT:
631       {
632          varcode = (MathedTextCodes)yylval.l->id;
633           yy_mtextmode = (bool)(varcode==LM_TC_TEXTRM);
634          flags |= (FLAG_BRACE|FLAG_BRACE_FONT);
635         break;
636       }
637     case LM_TK_WIDE:
638       {  
639          MathDecorationInset *sq = new MathDecorationInset(yylval.l->id, size);
640          sq->SetData(mathed_parse(FLAG_BRACE|FLAG_BRACE_LAST));
641          data.Insert(sq, LM_TC_ACTIVE_INSET);
642          break;
643       }
644       
645     case LM_TK_ACCENT: setAccent(yylval.l->id); break;
646           
647     case LM_TK_NONUM:
648       {
649           if (crow)
650             crow->setNumbered(false);
651           break;
652       }
653
654     case LM_TK_PMOD:
655     case LM_TK_FUNC:
656       {
657           MathedInset *bg = new MathFuncInset(yylval.l->name); 
658           if (accent) {
659               data.Insert(t);
660           } else
661             data.Insert(bg);
662           break;
663       }
664     case LM_TK_FUNCLIM:
665       {
666          data.Insert(new MathFuncInset(yylval.l->name, LM_OT_FUNCLIM));
667          break;
668       }
669     case LM_TK_UNDEF:
670       {
671           
672        MathMacro* p = 
673          MathMacroTable::mathMTable.getMacro(yylval.s);
674        if (p) {
675            if (accent) 
676              data.Insert(doAccent(p), p->getTCode());
677            else
678              data.Insert(p, p->getTCode());
679            for (int i=0; p->setArgumentIdx(i); i++)
680              p->SetData(mathed_parse(FLAG_BRACE|FLAG_BRACE_LAST));
681        }
682        else {
683            MathedInset *q = new MathFuncInset(yylval.s, LM_OT_UNDEF);
684            if (accent) {
685                    data.Insert(doAccent(q));
686            } else {
687                data.Insert(q);
688            }
689        }
690          break;
691       }
692     case LM_TK_END:
693       {
694          if (mathed_env != yylval.i && yylval.i!=LM_EN_ARRAY)
695            mathPrintError("Unmatched environment");
696          // debug info [made that conditional -JMarc]
697          if (lyxerr.debugging(Debug::MATHED))
698                  lyxerr << "[" << yylval.i << "]" << endl;
699          plevel--;
700          if (mt) { // && (flags & FLAG_END)) {
701             mt->SetData(array);
702             array = 0;
703          }
704          return array;
705       }
706     case LM_TK_BEGIN:
707       {
708          if (yylval.i==LM_EN_ARRAY) {
709             char ar[120], ar2[8];
710             ar[0] = ar2[0] = '\0'; 
711             char rg=LexGetArg(0);
712             if (rg==']') {
713                strcpy(ar2, yytext);
714                rg = LexGetArg('{');
715             }
716             strcpy(ar, yytext);
717             int nc = parse_align(ar, ar2);
718             MathParInset* mm = new MathMatrixInset(nc, 0);
719             mm->SetAlign(ar2[0], ar);
720             data.Insert(mm, LM_TC_ACTIVE_INSET);
721             mathed_parse(FLAG_END, mm->GetData(), &mm);
722          } else
723          if (yylval.i>=LM_EN_INTEXT && yylval.i<=LM_EN_EQNARRAY) {
724              if (plevel!=0) {
725                  mathPrintError("Misplaced environment");
726                  break;
727              }
728              if (!mt) {
729                  mathPrintError("0 paragraph.");
730                  panic = true;
731              }
732              
733              mathed_env = yylval.i;
734              if (mathed_env>=LM_EN_DISPLAY) {
735                  size = LM_ST_DISPLAY;
736                  if (mathed_env>LM_EN_EQUATION) {
737                      mt = new MathMatrixInset(3, -1);
738                      mt->SetAlign(' ', "rcl");
739                      if (mtx) *mtx = mt;
740                      flags |= FLAG_END;
741 //                   data.Insert(' ', LM_TC_TAB);
742 //                   data.Insert(' ', LM_TC_TAB);
743 //                   data.Reset();
744                  }
745                  mt->SetStyle(size);
746                  mt->SetType(mathed_env);
747                  crow = mt->getRowSt();
748              }
749                                
750 #ifdef DEBUG
751              lyxerr << "MATH BEGIN[" << mathed_env << "]" << endl;
752 #endif
753          } else {
754 //           lyxerr << "MATHCRO[" << yytext << "]";
755              MathMacro* p = 
756                MathMacroTable::mathMTable.getMacro(yytext);
757              if (p) {
758                  data.Insert(p, p->getTCode());
759                  p->setArgumentIdx(0);
760                  mathed_parse(FLAG_END, p->GetData(), (MathParInset**)&p);
761 //               for (int i=0; p->setArgumentIdx(i); i++)
762 //                 p->SetData(mathed_parse(FLAG_BRACE|FLAG_BRACE_LAST));
763              } else 
764                mathPrintError("Unrecognized environment");
765          }
766          break;
767       }
768        
769     case LM_TK_MACRO:
770      { 
771           MathedInset* p = 
772             MathMacroTable::mathMTable.getMacro(yylval.l->name);
773          
774           if (p) {
775               if (accent) {
776                 data.Insert(doAccent(p));
777               } else
778                 data.Insert(p, ((MathMacro*)p)->getTCode());
779           }
780           break;
781       }
782        
783      case LM_TK_LABEL:
784        {           
785           char rg = LexGetArg('\0', true);
786           if (rg != '}') {
787              mathPrintError("Expected '{'");
788               // debug info
789              lyxerr << "[" << yytext << "]" << endl;
790               panic = true;
791              break;
792           } 
793           if (crow) {
794               // This is removed by crow's destructor. Bad design? yes, this 
795               // will be changed after 0.12
796               crow->setLabel(strnew(yytext));
797           }
798           else {
799                   // where is this math_label free'ed?
800                   // Supposedly in ~formula, another bad hack,
801                   // give me some time please.
802                   mathed_label = strnew(yytext);
803           }
804 #ifdef DEBUG
805           lyxerr << "Label[" << mathed_label << "]" << endl;
806 #endif
807           break;
808         } 
809      default:
810        mathPrintError("Unrecognized token");
811        // debug info
812        lyxerr << "[" << t << " " << yytext << "]" << endl;
813        break;
814     }
815     tprev = t;
816     if (panic) {
817             lyxerr << " Math Panic, expect problems!" << endl;
818        //   Search for the end command. 
819        do t = yylex (); while (t != LM_TK_END && t);
820     } else
821      t = yylex ();
822    
823    if ((flags & FLAG_BRACE_OPT)/* && t!='^' && t!='_'*/) {
824         flags &= ~FLAG_BRACE_OPT;
825        //data.Insert (LM_TC_CLOSE);
826        break;
827     }
828    }
829    plevel--;
830    return array;
831 }
832
833
834 void mathed_parser_file(FILE* file, int lineno)
835 {
836     yyin = file;
837     yylineno = lineno;
838     if (!MathMacroTable::built)
839         MathMacroTable::mathMTable.builtinMacros();
840 }
841
842
843 int mathed_parser_lineno()
844 {
845     return yylineno;
846 }
847