From 7919d52cd6f1192f2154f533c6d918d124bbe726 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 27 Apr 2007 17:43:01 +0000 Subject: [PATCH] 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 --- ChangeLog | 4 ++++ glib/gregex.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 44f112e94..655212222 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 1d0214783..365b73929 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;