diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e7a3984d81..8e862b2686 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,5 +1,11 @@ +19990613 23:23 CET Eddie Runia + * source/rtl/natmsg/msggal.c + forgot this one + * tests/working/cmphello.prg + Hm, I little bit quick this evening forgot the != 0 part :-) + 19990613 23:15 CET Eddie Runia - * source/rtl/natmsg/msg???.c + + source/rtl/natmsg/msg???.c more languages added. * source/rtl/natxxx.c id. diff --git a/harbour/source/rtl/natmsg/msgspa.c b/harbour/source/rtl/natmsg/msgspa.c index 3473d5347e..fe803488de 100644 --- a/harbour/source/rtl/natmsg/msgspa.c +++ b/harbour/source/rtl/natmsg/msgspa.c @@ -2,9 +2,6 @@ * $Id$ */ -#include -#include - char *hb_monthsname[ 12 ] = { "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", diff --git a/harbour/tests/working/cmphello.prg b/harbour/tests/working/cmphello.prg index 5870b23735..29a1501313 100644 --- a/harbour/tests/working/cmphello.prg +++ b/harbour/tests/working/cmphello.prg @@ -10,7 +10,7 @@ function Main() QOut( "About to compile Hello.prg" ) QOut() if at( "WINDOWS", cOs ) != 0 .or. at( "DOS", cOs ) != 0 .or. ; - at( "OS/2", cOs ) // OS/2, DOS, Windows version + at( "OS/2", cOs ) != 0 // OS/2, DOS, Windows version __Run( "..\..\bin\harbour.exe hello.prg /gHRB" ) else // Unix / Linux version __Run( "../../bin/harbour.exe hello.prg /gHRB" )