Changeset 3988 for vendor/emacs-CVS_HEAD/lib-src/etags.c
- Timestamp:
- 11/26/05 08:33:26 (3 years ago)
- Files:
-
- vendor/emacs-CVS_HEAD/lib-src/etags.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
vendor/emacs-CVS_HEAD/lib-src/etags.c
r3939 r3988 42 42 */ 43 43 44 char pot_etags_version[] = "@(#) pot revision number is 17.1 4";44 char pot_etags_version[] = "@(#) pot revision number is 17.15"; 45 45 46 46 #define TRUE 1 … … 480 480 /* STDIN is defined in LynxOS system headers */ 481 481 #ifdef STDIN 482 # undef STDIN482 # undef STDIN 483 483 #endif 484 484 … … 995 995 { 996 996 puts ("-v, --vgrind\n\ 997 Generates an index of items intended for human consumption,\n\998 similar to the output of vgrind. The index is sorted, and\n\999 gives the page number of each item.");997 Print on the standard output an index of items intended for\n\ 998 human consumption, similar to the output of vgrind. The index\n\ 999 is sorted, and gives the page number of each item."); 1000 1000 puts ("-w, --no-warn\n\ 1001 1001 Suppress warning messages about entries defined in multiple\n\ … … 1429 1429 if (!CTAGS || cxref_style) 1430 1430 { 1431 put_entries (nodehead); /* write the remaining tags (ETAGS) */ 1431 /* Write the remaining tags to tagf (ETAGS) or stdout (CXREF). */ 1432 put_entries (nodehead); 1432 1433 free_tree (nodehead); 1433 1434 nodehead = NULL; … … 1443 1444 while (nincluded_files-- > 0) 1444 1445 fprintf (tagf, "\f\n%s,include\n", *included_files++); 1446 1447 if (fclose (tagf) == EOF) 1448 pfatal (tagfile); 1445 1449 } 1446 1450 1447 if (fclose (tagf) == EOF)1448 pfatal (tagfile);1449 1451 exit (EXIT_SUCCESS); 1450 1452 }
