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 "GNU M4 source repository".
http://git.sv.gnu.org/gitweb/?p=m4.git;a=commitdiff;h=ded10d6eab7aeccbba58b9a298c9218971b20201 The branch, branch-1.4 has been updated via ded10d6eab7aeccbba58b9a298c9218971b20201 (commit) via 5fe6f01e64e376c59745993a9f6d920922303868 (commit) from 5ac6004900880cf7613cb13608d84e92b987905f (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 ----------------------------------------------------------------- commit ded10d6eab7aeccbba58b9a298c9218971b20201 Author: Eric Blake <[email protected]> Date: Tue Feb 1 13:48:12 2011 -0700 maint: update to latest gnulib * gnulib: Update to latest. * m4/gnulib-cache.m4: Regenerate. * src/builtin.c (m4_ifelse): Use STREQ. Signed-off-by: Eric Blake <[email protected]> commit 5fe6f01e64e376c59745993a9f6d920922303868 Author: Eric Blake <[email protected]> Date: Tue Jan 25 19:33:53 2011 -0700 maint: reflect recent copyright assignments * AUTHORS: Update. Signed-off-by: Eric Blake <[email protected]> ----------------------------------------------------------------------- Summary of changes: AUTHORS | 2 +- ChangeLog | 12 ++++++++++++ gnulib | 2 +- m4/gnulib-cache.m4 | 2 +- src/builtin.c | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/AUTHORS b/AUTHORS index 7ed23d5..667db4c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -28,7 +28,7 @@ Markus Duft [email protected] 2006-08-03 Joel E. Denny [email protected] 2009-08-18 David Warme [email protected] 2010-03-10 Raphael Poss [email protected] 2010-10-04 - +Tim Rice [email protected] 2011-01-24 ======================================================================== diff --git a/ChangeLog b/ChangeLog index 2d2d0c1..71ec8ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2011-02-01 Eric Blake <[email protected]> + + maint: update to latest gnulib + * gnulib: Update to latest. + * m4/gnulib-cache.m4: Regenerate. + * src/builtin.c (m4_ifelse): Use STREQ. + +2011-01-25 Eric Blake <[email protected]> + + maint: reflect recent copyright assignments + * AUTHORS: Update. + 2011-01-03 Eric Blake <[email protected]> maint: update copyright year diff --git a/gnulib b/gnulib index a2e8447..a036b76 160000 --- a/gnulib +++ b/gnulib @@ -1 +1 @@ -Subproject commit a2e8447d6b8abe23504f4f2d4757a60a2e8bee54 +Subproject commit a036b7684f9671ee53999773785d1865603c3849 diff --git a/m4/gnulib-cache.m4 b/m4/gnulib-cache.m4 index 6ddefc5..552a393 100644 --- a/m4/gnulib-cache.m4 +++ b/m4/gnulib-cache.m4 @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2010 Free Software Foundation, Inc. +# Copyright (C) 2002-2011 Free Software Foundation, Inc. # # This file is free software, distributed under the terms of the GNU # General Public License. As a special exception to the GNU General diff --git a/src/builtin.c b/src/builtin.c index 3787e70..8ff03e8 100644 --- a/src/builtin.c +++ b/src/builtin.c @@ -661,7 +661,7 @@ m4_ifelse (struct obstack *obs, int argc, token_data **argv) result = NULL; while (result == NULL) - if (strcmp (ARG (0), ARG (1)) == 0) + if (STREQ (ARG (0), ARG (1))) result = ARG (2); else hooks/post-receive -- GNU M4 source repository
