From: Sebastian Wilhelmi Date: Fri, 15 Jun 2007 15:55:37 +0000 (+0000) Subject: Replaced & by & in to make gtk-doc happy. X-Git-Tag: GLIB_2_13_5~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e674f5fe779a76e59c1c65899faef6b8c90a06b1;p=platform%2Fupstream%2Fglib.git Replaced & by & in to make gtk-doc happy. 2007-06-15 Sebastian Wilhelmi * glib/gregex.c: Replaced & by & in to make gtk-doc happy. svn path=/trunk/; revision=5565 --- diff --git a/ChangeLog b/ChangeLog index 5cf1987..4926349 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-15 Sebastian Wilhelmi + + * glib/gregex.c: Replaced & by & in to make + gtk-doc happy. + 2007-06-14 Ryan Lortie * docs/reference/glib/glib-sections.txt: diff --git a/glib/gregex.c b/glib/gregex.c index 52ea980..b37545a 100644 --- a/glib/gregex.c +++ b/glib/gregex.c @@ -1091,7 +1091,7 @@ g_regex_match_simple (const gchar *pattern, * GMatchInfo *match_info; *   * regex = g_regex_new ("[A-Z]+", 0, 0, NULL); - * g_regex_match (regex, string, 0, &match_info); + * g_regex_match (regex, string, 0, &match_info); * while (g_match_info_matches (match_info)) * { * gchar *word = g_match_info_fetch (match_info, 0); @@ -1160,13 +1160,13 @@ g_regex_match (const GRegex *regex, * GError *error = NULL; *   * regex = g_regex_new ("[A-Z]+", 0, 0, NULL); - * g_regex_match_full (regex, string, -1, 0, 0, &match_info, &error); + * g_regex_match_full (regex, string, -1, 0, 0, &match_info, &error); * while (g_match_info_matches (match_info)) * { * gchar *word = g_match_info_fetch (match_info, 0); * g_print ("Found: %s\n", word); * g_free (word); - * g_match_info_next (match_info, &error); + * g_match_info_next (match_info, &error); * } * g_match_info_free (match_info); * g_regex_unref (regex);