Replaced & by &amp; in <programlisting> to make gtk-doc happy.
authorSebastian Wilhelmi <wilhelmi@google.com>
Fri, 15 Jun 2007 15:55:37 +0000 (15:55 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Fri, 15 Jun 2007 15:55:37 +0000 (15:55 +0000)
2007-06-15  Sebastian Wilhelmi  <wilhelmi@google.com>

* glib/gregex.c: Replaced & by &amp; in <programlisting> to make
gtk-doc happy.

svn path=/trunk/; revision=5565

ChangeLog
glib/gregex.c

index 5cf1987..4926349 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-06-15  Sebastian Wilhelmi  <wilhelmi@google.com>
+
+       * glib/gregex.c: Replaced & by &amp; in <programlisting> to make
+       gtk-doc happy.
+
 2007-06-14  Ryan Lortie  <desrt@desrt.ca>
 
        * docs/reference/glib/glib-sections.txt:
index 52ea980..b37545a 100644 (file)
@@ -1091,7 +1091,7 @@ g_regex_match_simple (const gchar        *pattern,
  *   GMatchInfo *match_info;
  *   &nbsp;
  *   regex = g_regex_new ("[A-Z]+", 0, 0, NULL);
- *   g_regex_match (regex, string, 0, &match_info);
+ *   g_regex_match (regex, string, 0, &amp;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;
  *   &nbsp;
  *   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, &amp;match_info, &amp;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, &amp;error);
  *     }
  *   g_match_info_free (match_info);
  *   g_regex_unref (regex);