+2001-05-10 Havoc Pennington <hp@pobox.com>
+
+ * gmessages.c (g_log_write_prefix): change env variable to
+ G_MESSAGES_PREFIXED, suggested by Tim
+
Thu May 10 15:19:01 2001 Tim Janik <timj@gtk.org>
* gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
+2001-05-10 Havoc Pennington <hp@pobox.com>
+
+ * gmessages.c (g_log_write_prefix): change env variable to
+ G_MESSAGES_PREFIXED, suggested by Tim
+
Thu May 10 15:19:01 2001 Tim Janik <timj@gtk.org>
* gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
+2001-05-10 Havoc Pennington <hp@pobox.com>
+
+ * gmessages.c (g_log_write_prefix): change env variable to
+ G_MESSAGES_PREFIXED, suggested by Tim
+
Thu May 10 15:19:01 2001 Tim Janik <timj@gtk.org>
* gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
+2001-05-10 Havoc Pennington <hp@pobox.com>
+
+ * gmessages.c (g_log_write_prefix): change env variable to
+ G_MESSAGES_PREFIXED, suggested by Tim
+
Thu May 10 15:19:01 2001 Tim Janik <timj@gtk.org>
* gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
+2001-05-10 Havoc Pennington <hp@pobox.com>
+
+ * gmessages.c (g_log_write_prefix): change env variable to
+ G_MESSAGES_PREFIXED, suggested by Tim
+
Thu May 10 15:19:01 2001 Tim Janik <timj@gtk.org>
* gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
+2001-05-10 Havoc Pennington <hp@pobox.com>
+
+ * gmessages.c (g_log_write_prefix): change env variable to
+ G_MESSAGES_PREFIXED, suggested by Tim
+
Thu May 10 15:19:01 2001 Tim Janik <timj@gtk.org>
* gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
+2001-05-10 Havoc Pennington <hp@pobox.com>
+
+ * gmessages.c (g_log_write_prefix): change env variable to
+ G_MESSAGES_PREFIXED, suggested by Tim
+
Thu May 10 15:19:01 2001 Tim Janik <timj@gtk.org>
* gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
+2001-05-10 Havoc Pennington <hp@pobox.com>
+
+ * gmessages.c (g_log_write_prefix): change env variable to
+ G_MESSAGES_PREFIXED, suggested by Tim
+
Thu May 10 15:19:01 2001 Tim Janik <timj@gtk.org>
* gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
GLogLevelFlags mask)
{
static GLogLevelFlags g_log_msg_prefix = G_LOG_LEVEL_ERROR | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_DEBUG;
- static gboolean initted = FALSE;
+ static gboolean initialized = FALSE;
g_mutex_lock (g_messages_lock);
- if (!initted)
+ if (!initialized)
{
const gchar *val;
- initted = TRUE;
+ initialized = TRUE;
- val = g_getenv ("G_PREFIX_MESSAGES");
+ val = g_getenv ("G_MESSAGES_PREFIXED");
if (val)
{
GLogLevelFlags mask)
{
static GLogLevelFlags g_log_msg_prefix = G_LOG_LEVEL_ERROR | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_DEBUG;
- static gboolean initted = FALSE;
+ static gboolean initialized = FALSE;
g_mutex_lock (g_messages_lock);
- if (!initted)
+ if (!initialized)
{
const gchar *val;
- initted = TRUE;
+ initialized = TRUE;
- val = g_getenv ("G_PREFIX_MESSAGES");
+ val = g_getenv ("G_MESSAGES_PREFIXED");
if (val)
{