From: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun, 1 Jun 2014 23:52:00 +0000 (-0700)
Subject: gnulib-common.m4: Fix typo in _GL_UNUSED_LABEL.
X-Git-Tag: v1.0~7367
X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=2b6592aae866c665910599f6323be98d7f89457c;p=gnulib.git

gnulib-common.m4: Fix typo in _GL_UNUSED_LABEL.

* m4/gnulib-common.m4 (_GL_UNUSED_LABEL): Omit trailing semicolon.
---

diff --git a/ChangeLog b/ChangeLog
index 1804a3b90c..388e8de594 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-01  Paul Eggert  <eggert@cs.ucla.edu>
+
+	gnulib-common.m4: Fix typo in _GL_UNUSED_LABEL.
+	* m4/gnulib-common.m4 (_GL_UNUSED_LABEL): Omit trailing semicolon.
+
 2014-06-02  Ben Walton  <bdwalton@gmail.com>
 
 	acl: apply pure attribute to two functions
diff --git a/m4/gnulib-common.m4 b/m4/gnulib-common.m4
index ba62c5865b..1bb316bb15 100644
--- a/m4/gnulib-common.m4
+++ b/m4/gnulib-common.m4
@@ -1,4 +1,4 @@
-# gnulib-common.m4 serial 34
+# gnulib-common.m4 serial 35
 dnl Copyright (C) 2007-2014 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -53,7 +53,7 @@ AC_DEFUN([gl_COMMON_BODY], [
    g++ has since version 4.5.  */
 #if !defined __cplusplus || __GNUC__ > 4 \
     || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
-# define _GL_UNUSED_LABEL _GL_UNUSED;
+# define _GL_UNUSED_LABEL _GL_UNUSED
 #else
 # define _GL_UNUSED_LABEL
 #endif