grep-commit
[Top][All Lists]
Advanced

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

[SCM] UNNAMED PROJECT branch, master, updated. v2.5.4-188-g039f205


From: Jim Meyering
Subject: [SCM] UNNAMED PROJECT branch, master, updated. v2.5.4-188-g039f205
Date: Fri, 19 Mar 2010 15:38:00 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "UNNAMED PROJECT".

The branch, master has been updated
       via  039f20526add807ab57ed08fd44279642f77c73d (commit)
      from  30976968c4b86634c058869cb1453642aab24f11 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=039f20526add807ab57ed08fd44279642f77c73d


commit 039f20526add807ab57ed08fd44279642f77c73d
Author: Jim Meyering <address@hidden>
Date:   Fri Mar 19 14:05:12 2010 +0100

    maint: correct macro parameter parentheses
    
    * src/dfa.c (FETCH_WC, FETCH): Parenthesize macro parameters.

diff --git a/src/dfa.c b/src/dfa.c
index 8118aa2..cb45193 100644
--- a/src/dfa.c
+++ b/src/dfa.c
@@ -343,7 +343,7 @@ static unsigned char const *buf_end;        /* reference to 
end in dfaexec().  */
   do {                                         \
     if (! lexleft)                             \
       {                                                \
-        if (eoferr != 0)                       \
+        if ((eoferr) != 0)                     \
          dfaerror (eoferr);                    \
         else                                   \
          return lasttok = END;                 \
@@ -380,7 +380,7 @@ static unsigned char const *buf_end;        /* reference to 
end in dfaexec().  */
   do {                               \
     if (! lexleft)                   \
       {                                      \
-       if (eoferr != 0)              \
+       if ((eoferr) != 0)            \
          dfaerror (eoferr);          \
        else                          \
          return lasttok = END;       \
@@ -389,8 +389,7 @@ static unsigned char const *buf_end;        /* reference to 
end in dfaexec().  */
     --lexleft;                       \
   } while(0)
 
-# define FETCH_WC(c, unused, eoferr)           \
-  FETCH(c, eoferr)
+# define FETCH_WC(c, unused, eoferr) FETCH (c, eoferr)
 
 #endif /* MBS_SUPPORT */
 

-----------------------------------------------------------------------

Summary of changes:
 src/dfa.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
UNNAMED PROJECT




reply via email to

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