* src/gtk/gtkstext.c
authorAlfons Hoogervorst <alfons@proteus.demon.nl>
Sun, 15 Jun 2003 13:38:23 +0000 (13:38 +0000)
committerAlfons Hoogervorst <alfons@proteus.demon.nl>
Sun, 15 Jun 2003 13:38:23 +0000 (13:38 +0000)
don't output debug text;
#ifdef out print_line() if not debugging (thanks to Martin Wicke
for pointing this out);

ChangeLog.claws
configure.ac
src/gtk/gtkstext.c

index f667b4635f25ab243df340efec6b6108e7c47c39..cd0cad2c5cae33f66e05206231544122ca4f965f 100644 (file)
@@ -1,4 +1,11 @@
-2003-06-14 [alfons]    0.9.0claws37
+2003-06-15 [alfons]    0.9.0claws39
+
+       * src/gtk/gtkstext.c
+               don't output debug text;
+               #ifdef out print_line() if not debugging (thanks to Martin Wicke
+               for pointing this out);
+
+2003-06-14 [alfons]    0.9.0claws38
        
        * src/messageview.c
                remove printf() and make one if..else comply with coding style
index 1281130fd46ced566ea4b9906456e2ddcdfcee56..8a5e2faa28af0a91dd1c4f56fd94102f373868dd 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws38
+EXTRA_VERSION=claws39
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 6df3430609326694a66b2913560576c49d7d4fca..8243bd7c49ecda8b5c59a2ef6c84c805ec9fb4ac 100644 (file)
@@ -487,7 +487,7 @@ static void gtk_stext_show_props (GtkSText* test,
 #define TEXT_SHOW_ADJ(text,adj,msg)
 #endif
 
-#define AHX_DEBUG
+/* #define AHX_DEBUG */
 #if defined(AHX_DEBUG)
 #      define XDEBUG(args) g_message args
 #else
@@ -4387,7 +4387,9 @@ static gint forward_display_row_fetcher(GtkSText *text,
                                __FILE__, __LINE__, data->start, data->end, lp->start.index, lp->end.index) );
                data->lp = *lp;
                data->completed = TRUE;
+#if defined(AHX_DEBUG)         
                print_line(text, lp->start.index, lp->end.index);
+#endif         
                return TRUE;
        }
        else if (range_intersect(data->start, data->end, lp->start.index, lp->end.index)) {