=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/less/tags.c,v retrieving revision 1.16 retrieving revision 1.17 diff -c -r1.16 -r1.17 *** src/usr.bin/less/tags.c 2015/11/09 16:39:13 1.16 --- src/usr.bin/less/tags.c 2016/01/12 17:48:04 1.17 *************** *** 46,52 **** struct tag { struct tag *next, *prev; /* List links */ char *tag_file; /* Source file containing the tag */ ! LINENUM tag_linenum; /* Appropriate line number in source file */ char *tag_pattern; /* Pattern used to find the tag */ int tag_endline; /* True if the pattern includes '$' */ }; --- 46,52 ---- struct tag { struct tag *next, *prev; /* List links */ char *tag_file; /* Source file containing the tag */ ! off_t tag_linenum; /* Appropriate line number in source file */ char *tag_pattern; /* Pattern used to find the tag */ int tag_endline; /* True if the pattern includes '$' */ }; *************** *** 87,93 **** * Create a new tag entry. */ static struct tag * ! maketagent(char *file, LINENUM linenum, char *pattern, int endline) { struct tag *tp; --- 87,93 ---- * Create a new tag entry. */ static struct tag * ! maketagent(char *file, off_t linenum, char *pattern, int endline) { struct tag *tp; *************** *** 194,200 **** char *p; FILE *f; int taglen; ! LINENUM taglinenum; char *tagfile; char *tagpattern; int tagendline; --- 194,200 ---- char *p; FILE *f; int taglen; ! off_t taglinenum; char *tagfile; char *tagpattern; int tagendline; *************** *** 317,323 **** ctagsearch(void) { off_t pos, linepos; ! LINENUM linenum; int len; char *line; --- 317,323 ---- ctagsearch(void) { off_t pos, linepos; ! off_t linenum; int len; char *line;