Don't put anything after an #endif. Likewise.
authorRaja R Harinath <harinath@src.gnome.org>
Fri, 8 Dec 2000 03:39:47 +0000 (03:39 +0000)
committerRaja R Harinath <harinath@src.gnome.org>
Fri, 8 Dec 2000 03:39:47 +0000 (03:39 +0000)
* gmain.h: Don't put anything after an #endif.
* gmain.c: Likewise.

12 files changed:
ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gmain.c
glib/gmain.h
gmain.c
gmain.h

index 5783b8d..a7bf736 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
 2000-12-06  Havoc Pennington  <hp@pobox.com>
 
        * tests/strfunc-test.c (main): add g_strdupv test
index 5783b8d..a7bf736 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
 2000-12-06  Havoc Pennington  <hp@pobox.com>
 
        * tests/strfunc-test.c (main): add g_strdupv test
index 5783b8d..a7bf736 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
 2000-12-06  Havoc Pennington  <hp@pobox.com>
 
        * tests/strfunc-test.c (main): add g_strdupv test
index 5783b8d..a7bf736 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
 2000-12-06  Havoc Pennington  <hp@pobox.com>
 
        * tests/strfunc-test.c (main): add g_strdupv test
index 5783b8d..a7bf736 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
 2000-12-06  Havoc Pennington  <hp@pobox.com>
 
        * tests/strfunc-test.c (main): add g_strdupv test
index 5783b8d..a7bf736 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
 2000-12-06  Havoc Pennington  <hp@pobox.com>
 
        * tests/strfunc-test.c (main): add g_strdupv test
index 5783b8d..a7bf736 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
 2000-12-06  Havoc Pennington  <hp@pobox.com>
 
        * tests/strfunc-test.c (main): add g_strdupv test
index 5783b8d..a7bf736 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-07  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gmain.h: Don't put anything after an #endif.
+       * gmain.c: Likewise.
+
 2000-12-06  Havoc Pennington  <hp@pobox.com>
 
        * tests/strfunc-test.c (main): add g_strdupv test
index fddaf15..a197683 100644 (file)
@@ -135,7 +135,7 @@ struct _GMainLoop
 #ifdef G_THREADS_ENABLED
   GMutex *mutex;
   GCond *sem_cond;
-#endif G_THREADS_ENABLED  
+#endif /* G_THREADS_ENABLED */
 };
 
 struct _GTimeoutSource
@@ -1601,7 +1601,7 @@ g_main_context_prepare (GMainContext *context,
     }
   
   context->poll_waiting = TRUE;
-#endif G_THREADS_ENABLED  
+#endif /* G_THREADS_ENABLED */
 
 #if 0
   /* If recursing, finish up current dispatch, before starting over */
@@ -2003,7 +2003,7 @@ g_main_loop_new (GMainContext *context,
   else
     loop->mutex = NULL;
   loop->sem_cond = NULL;
-#endif G_THREADS_ENABLED  
+#endif /* G_THREADS_ENABLED */
 
   return loop;
 }
index 8e4d7fc..6357490 100644 (file)
@@ -279,7 +279,7 @@ gboolean    g_idle_remove_by_data   (gpointer       data);
 void        g_main_poll_win32_msg_add (gint        priority,
                                       GPollFD    *fd,
                                       guint       hwnd);
-#endif G_OS_WIN32
+#endif /* G_OS_WIN32 */
 
 G_END_DECLS
 
diff --git a/gmain.c b/gmain.c
index fddaf15..a197683 100644 (file)
--- a/gmain.c
+++ b/gmain.c
@@ -135,7 +135,7 @@ struct _GMainLoop
 #ifdef G_THREADS_ENABLED
   GMutex *mutex;
   GCond *sem_cond;
-#endif G_THREADS_ENABLED  
+#endif /* G_THREADS_ENABLED */
 };
 
 struct _GTimeoutSource
@@ -1601,7 +1601,7 @@ g_main_context_prepare (GMainContext *context,
     }
   
   context->poll_waiting = TRUE;
-#endif G_THREADS_ENABLED  
+#endif /* G_THREADS_ENABLED */
 
 #if 0
   /* If recursing, finish up current dispatch, before starting over */
@@ -2003,7 +2003,7 @@ g_main_loop_new (GMainContext *context,
   else
     loop->mutex = NULL;
   loop->sem_cond = NULL;
-#endif G_THREADS_ENABLED  
+#endif /* G_THREADS_ENABLED */
 
   return loop;
 }
diff --git a/gmain.h b/gmain.h
index 8e4d7fc..6357490 100644 (file)
--- a/gmain.h
+++ b/gmain.h
@@ -279,7 +279,7 @@ gboolean    g_idle_remove_by_data   (gpointer       data);
 void        g_main_poll_win32_msg_add (gint        priority,
                                       GPollFD    *fd,
                                       guint       hwnd);
-#endif G_OS_WIN32
+#endif /* G_OS_WIN32 */
 
 G_END_DECLS