Remove trailing comma at end of enumerator list.
authorChris Wilson <chris@chris-wilson.co.uk>
Fri, 27 Apr 2007 17:43:01 +0000 (17:43 +0000)
committerChris Wilson <cpwilson@src.gnome.org>
Fri, 27 Apr 2007 17:43:01 +0000 (17:43 +0000)
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

ChangeLog
glib/gregex.h

index 44f112e..6552122 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 1d02147..365b739 100644 (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;