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: Mon, 13 Sep 2004 16:13:55 -0400

Index: emacs/lib-src/etags.c
diff -c emacs/lib-src/etags.c:3.40 emacs/lib-src/etags.c:3.41
*** emacs/lib-src/etags.c:3.40  Mon Sep 13 13:30:23 2004
--- emacs/lib-src/etags.c       Mon Sep 13 19:57:25 2004
***************
*** 40,46 ****
   * configuration file containing regexp definitions for etags.
   */
  
! char pot_etags_version[] = "@(#) pot revision number is 17.4";
  
  #define       TRUE    1
  #define       FALSE   0
--- 40,46 ----
   * configuration file containing regexp definitions for etags.
   */
  
! char pot_etags_version[] = "@(#) pot revision number is 17.5";
  
  #define       TRUE    1
  #define       FALSE   0
***************
*** 1314,1320 ****
        cwd = concat (oldcwd, "/", "");
        free (oldcwd);
      }
!   if (streq (tagfile, "-"))
      tagfiledir = cwd;
    else
      tagfiledir = absolute_dirname (tagfile, cwd);
--- 1314,1322 ----
        cwd = concat (oldcwd, "/", "");
        free (oldcwd);
      }
!   /* Relative file names are made relative to the current directory. */
!   if (streq (tagfile, "-")
!       || strneq (tagfile, "/dev/", 5))
      tagfiledir = cwd;
    else
      tagfiledir = absolute_dirname (tagfile, cwd);




reply via email to

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