From: Chris Wilson Date: Fri, 27 Apr 2007 17:43:01 +0000 (+0000) Subject: Remove trailing comma at end of enumerator list. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=7919d52cd6f1192f2154f533c6d918d124bbe726;p=dana%2Fcg-glib.git Remove trailing comma at end of enumerator list. 2007-04-27 Chris Wilson * glib/gregex.h: Remove trailing comma at end of enumerator list. svn path=/trunk/; revision=5464 --- diff --git a/ChangeLog b/ChangeLog index 44f112e9..65521222 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-04-27 Chris Wilson + + * glib/gregex.h: Remove trailing comma at end of enumerator list. + 2007-04-27 Tor Lillqvist * glib/gstdio.c (g_mkdir): Document that the mode argument is diff --git a/glib/gregex.h b/glib/gregex.h index 1d021478..365b7392 100644 --- a/glib/gregex.h +++ b/glib/gregex.h @@ -70,7 +70,7 @@ typedef enum G_REGEX_MATCH_NEWLINE_CR = 1 << 20, G_REGEX_MATCH_NEWLINE_LF = 1 << 21, G_REGEX_MATCH_NEWLINE_CRLF = G_REGEX_MATCH_NEWLINE_CR | G_REGEX_MATCH_NEWLINE_LF, - G_REGEX_MATCH_NEWLINE_ANY = 1 << 22, + G_REGEX_MATCH_NEWLINE_ANY = 1 << 22 } GRegexMatchFlags; typedef struct _GRegex GRegex;