Fix some typos. (#351741, Kjartan Maraas)
authorMatthias Clasen <mclasen@redhat.com>
Sat, 26 Aug 2006 04:03:37 +0000 (04:03 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sat, 26 Aug 2006 04:03:37 +0000 (04:03 +0000)
2006-08-26  Matthias Clasen  <mclasen@redhat.com>

* glib/gutils.h:
* glib/gscanner.c: Fix some typos.  (#351741, Kjartan Maraas)

ChangeLog
glib/gscanner.c
glib/gutils.h
gobject/ChangeLog
gobject/gobject.c

index 4dd1ceee087331985309354ca769820cbd2ab921..76899cad714f41ad4a98fa13789873dff8dbda87 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * glib/gutils.h: 
+       * glib/gscanner.c: Fix some typos.  (#351741, Kjartan Maraas)
+
 2006-08-25  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Fix the pthread compiler flag detection.
index f7e5682ec8512feaa45ded7050e5df99906f1b50..233cc73b9e6f65b5bd0335af5365aa51dae6dbfe 100644 (file)
@@ -744,9 +744,9 @@ g_scanner_sync_file_offset (GScanner *scanner)
   g_return_if_fail (scanner != NULL);
 
   /* for file input, rewind the filedescriptor to the current
-   * buffer position and blow the file read ahead buffer. usefull for
-   * third party uses of our filedescriptor, which hooks onto the current
-   * scanning position.
+   * buffer position and blow the file read ahead buffer. useful
+   * for third party uses of our file descriptor, which hooks 
+   * onto the current scanning position.
    */
 
   if (scanner->input_fd >= 0 && scanner->text_end > scanner->text)
index 6ef90cb3278a34a1d87b8d308d7a683230efeb6d..bf7cb90406073d4b5334f0ea093cef9067b49453 100644 (file)
@@ -211,10 +211,12 @@ gboolean              g_setenv             (const gchar *variable,
                                            gboolean     overwrite);
 void                  g_unsetenv           (const gchar *variable);
 gchar**               g_listenv            (void);
+
+/* private */
 const gchar*        _g_getenv_nomalloc    (const gchar *variable,
                                            gchar        buffer[1024]);
 
-/* we try to provide a usefull equivalent for ATEXIT if it is
+/* we try to provide a useful equivalent for ATEXIT if it is
  * not defined, but use is actually abandoned. people should
  * use g_atexit() instead.
  */
index 793abef2873d3502d01215a645d7f5e5f0fb414f..c4b02aeeab8442846283de0b98f7cedda63e3af9 100644 (file)
@@ -1,3 +1,7 @@
+2006-08-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gobject.c: Remove ; after G_DEFINE_TYPE.  (#351741, Kjartan Maraas)
+
 Wed Aug 23 10:35:32 2006  Tim Janik  <timj@gtk.org>
 
        * gobject.[hc]: changed return value of g_value_dup_object(), fixes #343292.
index d5290a108aa9a8774c9701b67da39f3c98305d9d..2d6e9cd5676ddf0b3f95a9e33ee6b16cf5ee1c2f 100644 (file)
@@ -2242,7 +2242,7 @@ g_object_compat_control (gsize           what,
     }
 }
 
-G_DEFINE_TYPE (GInitiallyUnowned, g_initially_unowned, G_TYPE_OBJECT);
+G_DEFINE_TYPE (GInitiallyUnowned, g_initially_unowned, G_TYPE_OBJECT)
 
 static void
 g_initially_unowned_init (GInitiallyUnowned *object)