changeset 17691:7d9357b7b5c6

gnulib-common.m4: Fix typo in _GL_UNUSED_LABEL. * m4/gnulib-common.m4 (_GL_UNUSED_LABEL): Omit trailing semicolon.
author Paul Eggert <eggert@cs.ucla.edu>
date Sun, 01 Jun 2014 16:52:00 -0700
parents daca962ab9c1
children 323b09d5b995
files ChangeLog m4/gnulib-common.m4
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Jun 01 23:39:44 2014 +0100
+++ b/ChangeLog	Sun Jun 01 16:52:00 2014 -0700
@@ -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
--- a/m4/gnulib-common.m4	Sun Jun 01 23:39:44 2014 +0100
+++ b/m4/gnulib-common.m4	Sun Jun 01 16:52:00 2014 -0700
@@ -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 @@
    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