From 41fa1f3dd121044739645fe8ba80f138514de692 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 13 Apr 2008 19:33:56 +0200 Subject: [PATCH] Avoid trailing comma, for picky AIX compiler. --- ChangeLog | 4 ++++ lib/unictype.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1b57b0f76..298894406 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-04-13 Bruno Haible + * lib/unictype.h: Remove trailing comma from enumeration definitions. + +2008-04-13 Bruno Haible + * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification expression, so as to avoid HP-UX 11 cc compiler bug. diff --git a/lib/unictype.h b/lib/unictype.h index b4cee6507..ab5477c57 100644 --- a/lib/unictype.h +++ b/lib/unictype.h @@ -1,5 +1,5 @@ /* Unicode character classification and properties. - Copyright (C) 2002, 2005-2007 Free Software Foundation, Inc. + Copyright (C) 2002, 2005-2008 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published @@ -247,7 +247,7 @@ enum UC_CCC_AR = 232, /* Above Right */ UC_CCC_DB = 233, /* Double Below */ UC_CCC_DA = 234, /* Double Above */ - UC_CCC_IS = 240, /* Iota Subscript */ + UC_CCC_IS = 240 /* Iota Subscript */ }; /* Return the canonical combining class of a Unicode character. */ -- 2.11.0