Don't remove leading whitespace from compiler output for compilers like gfortran which use space for indentation in error messages.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3450 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
a097d3dbb7
commit
8362d6be15
@ -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>
|
||||
|
@ -771,7 +771,7 @@ static gboolean build_iofunc(GIOChannel *ioc, GIOCondition cond, gpointer data)
|
||||
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))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user