Difference for common/recipe.c from version 1.1 to 1.2


version 1.1 version 1.2
Line 45
 
Line 45
   t->index = 0;    t->index = 0;
   t->transmute = 0;    t->transmute = 0;
   t->yield=0;    t->yield=0;
     t->keycode = 0;
   t->title = NULL;    t->title = NULL;
   t->arch_name = NULL;    t->arch_name = NULL;
   t->ingred = NULL;    t->ingred = NULL;
Line 125
 
Line 126
       formula=get_empty_formula();        formula=get_empty_formula();
       formula->title = add_string(strchr(cp,' ') + 1);        formula->title = add_string(strchr(cp,' ') + 1);
     }      }
       else if (!strncmp(cp, "keycode", 7)) {
         formula->keycode = add_string(strchr(cp,' ') + 1);
       }
     else if (sscanf(cp, "trans %d", &value)) {      else if (sscanf(cp, "trans %d", &value)) {
         formula->transmute = (uint16) value;          formula->transmute = (uint16) value;
     }      }


Legend:
line(s) removed in v.1.1 
line(s) changed
 line(s) added in v.1.2

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:17