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

Diff for /src/usr.bin/mg/basic.c between version 1.46 and 1.47

version 1.46, 2015/09/26 21:51:58 version 1.47, 2015/10/10 09:13:14
Line 28 
Line 28 
 int  int
 gotobol(int f, int n)  gotobol(int f, int n)
 {  {
           if (n == 0)
                   return (TRUE);
   
         curwp->w_doto = 0;          curwp->w_doto = 0;
         return (TRUE);          return (TRUE);
 }  }
Line 72 
Line 75 
 int  int
 gotoeol(int f, int n)  gotoeol(int f, int n)
 {  {
           if (n == 0)
                   return (TRUE);
   
         curwp->w_doto = llength(curwp->w_dotp);          curwp->w_doto = llength(curwp->w_dotp);
         return (TRUE);          return (TRUE);
 }  }

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47