Revision: 3450
http://geany.svn.sourceforge.net/geany/?rev=3450&view=rev
Author: eht16
Date: 2009-01-06 15:16:55 +0000 (Tue, 06 Jan 2009)
Log Message:
-----------
Don't remove leading whitespace from compiler output for compilers like gfortran which use space for indentation in error messages.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/build.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-01-06 14:53:31 UTC (rev 3449)
+++ trunk/ChangeLog 2009-01-06 15:16:55 UTC (rev 3450)
@@ -2,6 +2,9 @@
* tagmanager/basic.c:
Fix some bugs in parsing FreeBasic code (#2489605).
+ * src/build.c:
+ Don't remove leading whitespace from compiler output for compilers
+ like gfortran which use space for indentation in error messages.
2009-01-04 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c 2009-01-06 14:53:31 UTC (rev 3449)
+++ trunk/src/build.c 2009-01-06 15:16:55 UTC (rev 3450)
@@ -771,7 +771,7 @@
gchar *tmp;
color = (GPOINTER_TO_INT(data)) ? COLOR_DARK_RED : COLOR_BLACK;
- g_strstrip(msg);
+ g_strchomp(msg);
if (build_parse_make_dir(msg, &tmp))
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.