Remove trailing comma at end of enumerator list.

2007-04-27  Chris Wilson  <chris@chris-wilson.co.uk>

    * glib/gregex.h: Remove trailing comma at end of enumerator list.


svn path=/trunk/; revision=5464
This commit is contained in:
Chris Wilson 2007-04-27 17:43:01 +00:00 committed by Chris Wilson
parent 5153ea94b0
commit 7919d52cd6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-04-27 Chris Wilson <chris@chris-wilson.co.uk>
* glib/gregex.h: Remove trailing comma at end of enumerator list.
2007-04-27 Tor Lillqvist <tml@novell.com>
* glib/gstdio.c (g_mkdir): Document that the mode argument is

View File

@ -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;