[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.38 and 1.39

version 1.38, 2015/09/24 07:07:59 version 1.39, 2015/09/24 07:20:12
Line 257 
Line 257 
 }  }
   
 /*  /*
  * Delete a paragraph.  Delete n paragraphs starting with the current one.   * Delete n paragraphs. Move to the beginning of the current paragraph, or if
    * the cursor is on an empty line, move down the buffer to the first line with
    * non-space characters. Then mark n paragraphs and delete.
  */   */
 /* ARGSUSED */  /* ARGSUSED */
 int  int
Line 286 
Line 288 
 }  }
   
 /*  /*
  * Mark n paragraphs starting with the last one and working our way backwards.   * Mark n paragraphs starting with the n'th and working our way backwards.
  * This leaves the cursor at the beginning of the paragraph where markpara()   * This leaves the cursor at the beginning of the paragraph where markpara()
  * was invoked.   * was invoked.
  */   */
Line 313 
Line 315 
 }  }
   
 /*  /*
  * Go down the buffer until we find text.   * Go down the buffer until we find a line with non-space characters.
  */   */
 int  int
 findpara(void)  findpara(void)

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39