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

Diff for /src/usr.bin/less/linenum.c between version 1.10 and 1.11

version 1.10, 2015/11/06 15:50:33 version 1.11, 2015/11/09 04:10:57
Line 39 
Line 39 
  * Structure to keep track of a line number and the associated file position.   * Structure to keep track of a line number and the associated file position.
  * A doubly-linked circular list of line numbers is kept ordered by line number.   * A doubly-linked circular list of line numbers is kept ordered by line number.
  */   */
 struct linenum_info  struct linenum_info {
 {  
         struct linenum_info *next;      /* Link to next in the list */          struct linenum_info *next;      /* Link to next in the list */
         struct linenum_info *prev;      /* Line to previous in the list */          struct linenum_info *prev;      /* Line to previous in the list */
         off_t pos;                      /* File position */          off_t pos;                      /* File position */

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11