emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/src/regex.c
Date: Sun, 24 Mar 2002 19:45:48 -0500

Index: emacs/src/regex.c
diff -c emacs/src/regex.c:1.175 emacs/src/regex.c:1.176
*** emacs/src/regex.c:1.175     Thu Mar 21 04:44:14 2002
--- emacs/src/regex.c   Sun Mar 24 19:45:48 2002
***************
*** 1944,1950 ****
   do { if (p != pend)                                                  \
       {                                                                        
\
         PATFETCH (c);                                                  \
!        while (c == ' ') PATFETCH (c);                                 \
         while ('0' <= c && c <= '9')                                   \
         {                                                              \
             int prev;                                                  \
--- 1944,1951 ----
   do { if (p != pend)                                                  \
       {                                                                        
\
         PATFETCH (c);                                                  \
!        if (c == ' ')                                                  \
!        FREE_STACK_RETURN (REG_BADBR);                                 \
         while ('0' <= c && c <= '9')                                   \
         {                                                              \
             int prev;                                                  \
***************
*** 1958,1964 ****
             break;                                                     \
           PATFETCH (c);                                                \
         }                                                              \
!        while (c == ' ') PATFETCH (c);                                 \
         }                                                              \
      } while (0)
  
--- 1959,1966 ----
             break;                                                     \
           PATFETCH (c);                                                \
         }                                                              \
!        if (c == ' ')                                                  \
!        FREE_STACK_RETURN (REG_BADBR);                                 \
         }                                                              \
      } while (0)
  



reply via email to

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