summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-01-10 18:10:07 +0000
committerDom Lachowicz <doml@src.gnome.org>2007-01-10 18:10:07 +0000
commitc86451222851de8afe54f2d894a11d1deca5ea3d (patch)
treeccd5bd53d59a56ebc3bd4ef4492af7f93d718b16
parent591ca88d3d2780d869ebc444480b584a15c5bd97 (diff)
downloadlibcroco-c86451222851de8afe54f2d894a11d1deca5ea3d.tar.gz
Remove trailing comma. Needed for compilation on AIX with xlc.
2007-01-10 Bruno Haible <bruno@clisp.org> * cr-style.h (enum CRPositionType): Remove trailing comma. Needed for compilation on AIX with xlc. svn path=/trunk/; revision=310
-rw-r--r--ChangeLog7
-rw-r--r--src/cr-style.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d1aa74..0a6294a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-10 Bruno Haible <bruno@clisp.org>
+
+ * cr-style.h (enum CRPositionType): Remove trailing comma. Needed for
+ compilation on AIX with xlc.
+
2007-01-09 Benjamin Dauvergne <feanor@tol-eressea.org>
* src/cr-tknzr.c: Bug 314831 - Escapes not recognized
@@ -8,6 +13,8 @@
2007-01-09 Dom Lachowicz <domlachowicz@gmail.com>
+ From Bruno Haible <bruno@clisp.org>
+
* src/cr-fonts.h: gives syntax errors when included twice
* src/cr-fonts.c: the return value of cr_font_family_prepend()
should be "the font family list", not CR_OK which is the same as NULL.
diff --git a/src/cr-style.h b/src/cr-style.h
index 9abdef6..18aeaad 100644
--- a/src/cr-style.h
+++ b/src/cr-style.h
@@ -80,7 +80,7 @@ enum CRPositionType
POSITION_RELATIVE,
POSITION_ABSOLUTE,
POSITION_FIXED,
- POSITION_INHERIT,
+ POSITION_INHERIT
} ;
enum CRFloatType