summaryrefslogtreecommitdiff
path: root/gdate.c
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@pobox.com>1999-03-14 23:46:51 +0000
committerJeff Garzik <jgarzik@src.gnome.org>1999-03-14 23:46:51 +0000
commit21d0ac27b89465a6374eb86336dd73792a9bac07 (patch)
tree1de10aa11c7935192854a97fc8c293f56b35d50c /gdate.c
parentbfc21756e14e4600c916c00e6ee03e1c10e0cc01 (diff)
downloadglib-21d0ac27b89465a6374eb86336dd73792a9bac07.tar.gz
Commented out debugging output.
1999-03-14 Jeff Garzik <jgarzik@pobox.com> * gdate.c: Commented out debugging output. * tests/Makefile.am, tests/date-test.c: Added test of the GDate module, based closely on testgdate.c. * tests/Makefile.am: Bugfix - compile tests with @GLIB_DEBUG_FLAGS@.
Diffstat (limited to 'gdate.c')
-rw-r--r--gdate.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdate.c b/gdate.c
index 7b1f5281b..fe4403230 100644
--- a/gdate.c
+++ b/gdate.c
@@ -609,16 +609,22 @@ g_date_prepare_to_parse (const gchar *str, GDateParseTokens *pt)
}
#ifdef G_ENABLE_DEBUG
+# if 0
g_message ("**GDate prepared a new set of locale-specific parse rules.");
+# endif
i = 1;
while (i < 13)
{
+# if 0
g_message (" %s %s", long_month_names[i], short_month_names[i]);
+# endif
++i;
}
if (using_twodigit_years)
{
+# if 0
g_message ("**Using twodigit years with cutoff year: %u", twodigit_start_year);
+# endif
}
{
gchar *strings[3];
@@ -642,8 +648,10 @@ g_date_prepare_to_parse (const gchar *str, GDateParseTokens *pt)
}
++i;
}
+# if 0
g_message ("**Order: %s, %s, %s", strings[0], strings[1], strings[2]);
g_message ("**Sample date in this locale: `%s'", buf);
+# endif
}
#endif
}
@@ -668,8 +676,10 @@ g_date_set_parse (GDate *d,
g_date_prepare_to_parse (str, &pt);
#ifdef G_ENABLE_DEBUG
+# if 0
g_message ("Found %d ints, `%d' `%d' `%d' and written out month %d",
pt.num_ints, pt.n[0], pt.n[1], pt.n[2], pt.month);
+# endif
#endif