Remove duplicate paragraph. (#45786, Ruben Vermeersch)
authorMatthias Clasen <mclasen@redhat.com>
Mon, 9 Jul 2007 17:54:38 +0000 (17:54 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 9 Jul 2007 17:54:38 +0000 (17:54 +0000)
2007-07-09  Matthias Clasen <mclasen@redhat.com>

        * tmpl/modules.sgml: Remove duplicate paragraph.
        (#45786, Ruben Vermeersch)

        * tmpl/modules.sgml: Remove duplicate code from
        an example. (#454785, Ruben Vermeersch)

svn path=/trunk/; revision=5612

docs/reference/ChangeLog
docs/reference/glib/tmpl/modules.sgml

index 8e346050d6cb9c8fb8afcbcb10099e93812c8512..6d9412b37e3f92e92fced7e8d083e48f78dba460 100644 (file)
@@ -1,3 +1,11 @@
+2007-07-09  Matthias Clasen <mclasen@redhat.com>
+
+       * tmpl/modules.sgml: Remove duplicate paragraph.
+       (#45786, Ruben Vermeersch)
+
+       * tmpl/modules.sgml: Remove duplicate code from
+       an example. (#454785, Ruben Vermeersch)
+
 Mon Jul  9 10:23:53 2007  Tim Janik  <timj@imendio.com>
 
        * gobject/tmpl/gclosure.sgml: GClosure docu fixes from Guillaume
index 50d602a9ea623d3a7d8e4cfce651c2c853389b04..992ec3d0d6ca3f8a19d4ba09921fdf5fc5e8e362 100644 (file)
@@ -79,14 +79,6 @@ just_say_hello (const char *filename, GError **error)
       return FALSE;
     }
 
-  if (say_hello == NULL)
-    {
-      g_set_error (error, SAY_ERROR, SAY_ERROR_OPEN, "symbol say_hello is NULL");
-      if (!g_module_close (module))
-       g_warning ("&percnt;s: &percnt;s", filename, g_module_error (<!-- -->));
-      return FALSE;
-    }
-
   /* call our function in the module */
   say_hello ("Hello world!");
 
@@ -196,9 +188,6 @@ Gets a symbol pointer from a module.
 <para>
 Note that a valid symbol can be %NULL.
 </para>
-<para>
-Note that a valid symbol can be %NULL.
-</para>
 
 @module: a #GModule.
 @symbol_name: the name of the symbol to find.