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: Thu, 20 Jun 2002 04:43:58 -0400

Index: emacs/lib-src/etags.c
diff -c emacs/lib-src/etags.c:3.23 emacs/lib-src/etags.c:3.24
*** emacs/lib-src/etags.c:3.23  Thu Jun 13 13:53:35 2002
--- emacs/lib-src/etags.c       Thu Jun 20 04:43:57 2002
***************
*** 31,40 ****
   * 2001 Nested classes by Francesco Potortì (concept by Mykola Dzyuba).
   * 2002 #line directives by Francesco Potortì.
   *
!  *    Francesco Potortì <address@hidden> has maintained it since 1993.
   */
  
! char pot_etags_version[] = "@(#) pot revision number is 16.26";
  
  #define       TRUE    1
  #define       FALSE   0
--- 31,41 ----
   * 2001 Nested classes by Francesco Potortì (concept by Mykola Dzyuba).
   * 2002 #line directives by Francesco Potortì.
   *
!  * Francesco Potortì <address@hidden> has maintained and improved it since 
1993.
!  *
   */
  
! char pot_etags_version[] = "@(#) pot revision number is 16.27";
  
  #define       TRUE    1
  #define       FALSE   0
***************
*** 3831,3838 ****
  #define LOOP_ON_INPUT_LINES(file_pointer, line_buffer, char_pointer)  \
    for (;                      /* loop initialization */               \
         !feof (file_pointer)   /* loop test */                         \
!        && (char_pointer = lb.buffer, /* instructions at start of loop */ \
!          readline (&line_buffer, file_pointer),                       \
           TRUE);                                                       \
        )
  #define LOOKING_AT(cp, keyword)       /* keyword is a constant string */      
\
--- 3832,3840 ----
  #define LOOP_ON_INPUT_LINES(file_pointer, line_buffer, char_pointer)  \
    for (;                      /* loop initialization */               \
         !feof (file_pointer)   /* loop test */                         \
!        &&                     /* instructions at start of loop */     \
!         (readline (&line_buffer, file_pointer),                       \
!            char_pointer = line_buffer.buffer,                         \
           TRUE);                                                       \
        )
  #define LOOKING_AT(cp, keyword)       /* keyword is a constant string */      
\
***************
*** 4398,4404 ****
  
  /*
   * Makefile support
!  * Idea by Assar Westerlund <address@hidden> (2001)
   */
  static void
  Makefile_targets (inf)
--- 4400,4406 ----
  
  /*
   * Makefile support
!  * Ideas by Assar Westerlund <address@hidden> (2001)
   */
  static void
  Makefile_targets (inf)
***************
*** 4412,4418 ****
        continue;
        while (*bp != '\0' && *bp != '=' && *bp != ':')
        bp++;
!       if (*bp == ':')
        pfnote (savenstr (lb.buffer, bp - lb.buffer), TRUE,
                lb.buffer, bp - lb.buffer + 1, lineno, linecharno);
      }
--- 4414,4420 ----
        continue;
        while (*bp != '\0' && *bp != '=' && *bp != ':')
        bp++;
!       if (*bp == ':' || (globals && *bp == '='))
        pfnote (savenstr (lb.buffer, bp - lb.buffer), TRUE,
                lb.buffer, bp - lb.buffer + 1, lineno, linecharno);
      }
***************
*** 5432,5440 ****
        need_filebuf = TRUE;
        break;
        default:
!       modifiers[1] = '\0';
!       error ("invalid regexp modifier `%s'", modifiers);
!       return;
        }
  
    patbuf = xnew (1, struct re_pattern_buffer);
--- 5434,5446 ----
        need_filebuf = TRUE;
        break;
        default:
!       {
!         char wrongmod [2];
!         wrongmod[0] = modifiers[0];
!         wrongmod[1] = '\0';
!         error ("invalid regexp modifier `%s', ignoring", wrongmod);
!       }
!       break;
        }
  
    patbuf = xnew (1, struct re_pattern_buffer);



reply via email to

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