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

Diff for /src/usr.bin/mg/display.c between version 1.33 and 1.34

version 1.33, 2006/12/24 01:07:59 version 1.34, 2007/03/29 17:37:15
Line 106 
Line 106 
 #endif /* !LINENOMODE */  #endif /* !LINENOMODE */
 static int       linenos = LINENOMODE;  static int       linenos = LINENOMODE;
   
   /* Is macro recording enabled? */
   extern int macrodef;
   
 /*  /*
  * Since we don't have variables (we probably should) this is a command   * Since we don't have variables (we probably should) this is a command
  * processor for changing the value of the line number mode flag.   * processor for changing the value of the line number mode flag.
Line 823 
Line 826 
                 vtputc('-');                  vtputc('-');
                 ++n;                  ++n;
         }          }
           /* XXX This should eventually move to a real mode */
           if (macrodef == TRUE)
                   n += vtputs("-def");
         vtputc(')');          vtputc(')');
         ++n;          ++n;
   

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34