[BACK]Return to macro.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mg

Diff for /src/usr.bin/mg/macro.c between version 1.9 and 1.10

version 1.9, 2005/06/14 18:14:40 version 1.10, 2005/11/18 20:56:53
Line 15 
Line 15 
 int macrodef = FALSE;  int macrodef = FALSE;
 int macrocount = 0;  int macrocount = 0;
   
 LINE *maclhead = NULL;  struct line *maclhead = NULL;
 LINE *maclcur;  struct line *maclcur;
   
 union macrodef macro[MAXMACRO];  union macrodef macro[MAXMACRO];
   
Line 24 
Line 24 
 int  int
 definemacro(int f, int n)  definemacro(int f, int n)
 {  {
         LINE    *lp1, *lp2;          struct line     *lp1, *lp2;
   
         macrocount = 0;          macrocount = 0;
   

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10