--- gnome-panel-2.13.91/applets/clock/clock.c	2006-01-22 12:23:29.000000000 -0500
+++ gnome-panel-2.13.91.patched/applets/clock/clock.c	2006-02-19 00:41:29.000000000 -0500
@@ -372,7 +372,7 @@
 {
 	struct tm *tm;
 	char date[256], hour[256];
-	char *utf8, *loc;
+	char *utf8, *loc, *markup;
 
 	time (&cd->current_time);
 	
@@ -409,8 +409,15 @@
 	}
 
 	utf8 = g_locale_to_utf8 (hour, -1, NULL, NULL, NULL);
-	gtk_label_set_text (GTK_LABEL (cd->clockw), utf8);
+
+        // Set formatet label for the clock
+        markup = g_markup_printf_escaped (utf8);
+        gtk_label_set_markup (GTK_LABEL (cd->clockw), markup);
+
+        // Old not formated label
+	//gtk_label_set_text (GTK_LABEL (cd->clockw), utf8);
 	g_free (utf8);
+        g_free (markup);
 
         gtk_widget_queue_resize (cd->toggle);
 
