[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.14 and 1.15

version 1.14, 2006/07/25 08:22:32 version 1.15, 2006/11/17 08:45:31
Line 131 
Line 131 
         char     wbuf[MAXWORD]; /* buffer for current word              */          char     wbuf[MAXWORD]; /* buffer for current word              */
   
         undo_add_boundary();          undo_add_boundary();
         undo_no_boundary(TRUE);          undo_boundary_enable(FALSE);
   
         /* record the pointer to the line just past the EOP */          /* record the pointer to the line just past the EOP */
         (void)gotoeop(FFRAND, 1);          (void)gotoeop(FFRAND, 1);
Line 237 
Line 237 
         (void)backchar(FFRAND, 1);          (void)backchar(FFRAND, 1);
         retval = TRUE;          retval = TRUE;
 cleanup:  cleanup:
         undo_no_boundary(FALSE);          undo_boundary_enable(TRUE);
         undo_add_boundary();          undo_add_boundary();
         return (retval);          return (retval);
 }  }

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15