Compile.cpp.patch

Jan DolinĂ¡r, 12/18/2012 03:46 PM

Download (802 Bytes)

View differences:

uppsrc/Skylark/Compile.cpp (working copy)
359 359
       int line = 1;
360 360
       while(*s) {
361 361
               if(*s == '$') {
362
                       if(s[1] == '$')
363
                               s += 2;
364
                       else {
362
                       if(s[1] == '$') {
363
                               blk.AddText(b, s+1);
364
                               p.Set(s+2, NULL, line);
365
                               b = s = p.GetSpacePtr();
366
                       } else {
365 367
                               blk.AddText(b, s);
366 368
                               p.Set(s + 1, NULL, line);
367 369
                               if(p.Id("if")) {