Show
Ignore:
Timestamp:
11/26/05 08:33:26 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vendor/emacs-CVS_HEAD/lib-src/etags.c

    r3939 r3988  
    4242 */ 
    4343 
    44 char pot_etags_version[] = "@(#) pot revision number is 17.14"; 
     44char pot_etags_version[] = "@(#) pot revision number is 17.15"; 
    4545 
    4646#define TRUE    1 
     
    480480/* STDIN is defined in LynxOS system headers */ 
    481481#ifdef STDIN 
    482 #undef STDIN 
     482# undef STDIN 
    483483#endif 
    484484 
     
    995995    { 
    996996      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."); 
    10001000      puts ("-w, --no-warn\n\ 
    10011001        Suppress warning messages about entries defined in multiple\n\ 
     
    14291429  if (!CTAGS || cxref_style) 
    14301430    { 
    1431       put_entries (nodehead);   /* write the remaining tags (ETAGS) */ 
     1431      /* Write the remaining tags to tagf (ETAGS) or stdout (CXREF). */ 
     1432      put_entries (nodehead); 
    14321433      free_tree (nodehead); 
    14331434      nodehead = NULL; 
     
    14431444          while (nincluded_files-- > 0) 
    14441445            fprintf (tagf, "\f\n%s,include\n", *included_files++); 
     1446 
     1447          if (fclose (tagf) == EOF) 
     1448            pfatal (tagfile); 
    14451449        } 
    14461450 
    1447       if (fclose (tagf) == EOF) 
    1448         pfatal (tagfile); 
    14491451      exit (EXIT_SUCCESS); 
    14501452    }