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

Diff for /src/usr.bin/mg/paragraph.c between version 1.44 and 1.45

version 1.44, 2016/04/14 17:05:32 version 1.45, 2016/09/06 16:25:47
Line 108 
Line 108 
                         curwp->w_dotp = lforw(curwp->w_dotp);                          curwp->w_dotp = lforw(curwp->w_dotp);
                         curwp->w_dotline++;                          curwp->w_dotline++;
   
                         /* do not continue after end of buffer */  
                         if (lforw(curwp->w_dotp) == curbp->b_headp) {  
                                 gotoeol(FFRAND, 1);  
                                 curwp->w_rflag |= WFMOVE;  
                                 return (FALSE);  
                         }  
                 }                  }
           }
           /* do not continue after end of buffer */
           if (lforw(curwp->w_dotp) == curbp->b_headp) {
                   gotoeol(FFRAND, 1);
                   curwp->w_rflag |= WFMOVE;
                   return (FALSE);
         }          }
   
         /* force screen update */          /* force screen update */

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.45