[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.26 and 1.27

version 1.26, 2013/06/01 09:50:47 version 1.27, 2013/06/01 10:23:40
Line 16 
Line 16 
 #define MAXWORD 256  #define MAXWORD 256
   
 /*  /*
  * Move to start of paragraph.  Go back to the beginning of the current   * Move to start of paragraph.
  * paragraph here we look for a <NL><NL> or <NL><TAB> or <NL><SPACE>   * Move backwards by line, checking from the 1st character forwards for the
  * combination to delimit the beginning of a paragraph.   * existence a non-space. If a non-space character is found, move to the
    * preceding line. Keep doing this until a line with only spaces is found or
    * the start of buffer.
  */   */
 /* ARGSUSED */  /* ARGSUSED */
 int  int
Line 54 
Line 56 
 }  }
   
 /*  /*
  * Move to end of paragraph.  Go forward to the end of the current paragraph   * Move to end of paragraph.
  * here we look for a <NL><NL> or <NL><TAB> or <NL><SPACE> combination to   * See comments for gotobop(). Same, but moving forwards.
  * delimit the beginning of a paragraph.  
  */   */
 /* ARGSUSED */  /* ARGSUSED */
 int  int

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27