emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lib-src/etags.c


From: Francesco Potortì
Subject: [Emacs-diffs] Changes to emacs/lib-src/etags.c
Date: Wed, 05 Jun 2002 08:09:29 -0400

Index: emacs/lib-src/etags.c
diff -c emacs/lib-src/etags.c:3.17 emacs/lib-src/etags.c:3.18
*** emacs/lib-src/etags.c:3.17  Mon May 27 02:50:39 2002
--- emacs/lib-src/etags.c       Wed Jun  5 08:09:29 2002
***************
*** 33,39 ****
   *    Francesco Potortì <address@hidden> has maintained it since 1993.
   */
  
! char pot_etags_version[] = "@(#) pot revision number is 15.16";
  
  #define       TRUE    1
  #define       FALSE   0
--- 33,39 ----
   *    Francesco Potortì <address@hidden> has maintained it since 1993.
   */
  
! char pot_etags_version[] = "@(#) pot revision number is $Revision: 3.18 $";
  
  #define       TRUE    1
  #define       FALSE   0
***************
*** 441,447 ****
  static bool globals;          /* create tags for global variables */
  static bool declarations;     /* --declarations: tag them and extern in C&Co*/
  static bool members;          /* create tags for C member variables */
! static bool no_line_directive;        /* ignore #line directives */
  static bool update;           /* -u: update tags */
  static bool vgrind_style;     /* -v: create vgrind style index output */
  static bool no_warnings;      /* -w: suppress warnings */
--- 441,447 ----
  static bool globals;          /* create tags for global variables */
  static bool declarations;     /* --declarations: tag them and extern in C&Co*/
  static bool members;          /* create tags for C member variables */
! static bool no_line_directive;        /* ignore #line directives 
(undocumented) */
  static bool update;           /* -u: update tags */
  static bool vgrind_style;     /* -v: create vgrind style index output */
  static bool no_warnings;      /* -w: suppress warnings */
***************
*** 1254,1261 ****
  
    if (update)
      {
!       char cmd[BUFSIZ];
!       sprintf (cmd, "sort -o %s %s", tagfile, tagfile);
        exit (system (cmd));
      }
    return GOOD;
--- 1254,1261 ----
  
    if (update)
      {
!       char cmd[2*BUFSIZ+10];
!       sprintf (cmd, "sort -o %.*s %.*s", BUFSIZ, tagfile, BUFSIZ, tagfile);
        exit (system (cmd));
      }
    return GOOD;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]