diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d61d7f7cf4..8f62bf8d41 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,21 @@ The license applies to all entries newer than 2009-04-28. */ +2010-09-28 17:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * src/compiler/hbusage.c + + Added to the list of contributors: + + Carlos Bacco (carlosbacco gmail.com) + Francesco Perillo (fperillo gmail.com) + Istvan Bisz (istvan.bisz t-online.hu) + Tamas Tevesz (ice extreme.hu) + + (I accept recommendation about who else should be added, + it's be a while I updated this list) + + * contrib/hbide/ideparseexpr.c + % Using hb_parldef(). + 2010-09-28 17:46 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbcom.ch + added new error constant value: HB_COM_ERR_IO diff --git a/harbour/contrib/hbide/ideparseexpr.c b/harbour/contrib/hbide/ideparseexpr.c index 35217e83fd..4306562163 100644 --- a/harbour/contrib/hbide/ideparseexpr.c +++ b/harbour/contrib/hbide/ideparseexpr.c @@ -244,9 +244,9 @@ HB_FUNC( PARSEXPR ) /* ( c, bHonorSpacing, bInRemark, bUpperKeyWord, bKeepCommen HB_BOOL bHonorSpacing = hb_parl( 2 ); HB_BOOL bInRemark = hb_parl( 3 ); - HB_BOOL bKeepComments = HB_ISLOG( 5 ) ? hb_parl( 5 ) : HB_TRUE; - HB_BOOL bPRG = HB_ISLOG( 6 ) ? hb_parl( 6 ) : HB_TRUE; - HB_BOOL bKeepSpaces = HB_ISLOG( 7 ) ? hb_parl( 7 ) : HB_TRUE; + HB_BOOL bKeepComments = hb_parldef( 5, 1 ); + HB_BOOL bPRG = hb_parldef( 6, 1 ); + HB_BOOL bKeepSpaces = hb_parldef( 7, 1 ); HB_BOOL bFirst = HB_TRUE; HB_ISIZ lenprocessed = 0; HB_ISIZ lenwords = 0; diff --git a/harbour/src/compiler/hbusage.c b/harbour/src/compiler/hbusage.c index 4148f727c1..985bb045f3 100644 --- a/harbour/src/compiler/hbusage.c +++ b/harbour/src/compiler/hbusage.c @@ -195,6 +195,7 @@ void hb_compPrintCredits( HB_COMP_DECL ) "Bill Robertson (arcadia2 sbcglobal.net)\n" "Brian Hays (bhays abacuslaw.com)\n" "Bruno Cantero (bruno issnet.net)\n" + "Carlos Bacco (carlosbacco gmail.com)\n" "Chen Kedem (niki synel.co.il)\n" "Dave Pearson (davep davep.org)\n" "David Arturo Macias Corona (dmacias mail.udg.mx)\n" @@ -205,6 +206,7 @@ void hb_compPrintCredits( HB_COMP_DECL ) "Enrico Maria Giordano (e.m.giordano emagsoftware.it)\n" "Felipe G. Coury (fcoury creation.com.br)\n" "Fernando Mancera (fmancera viaopen.com)\n" + "Francesco Perillo (fperillo gmail.com)\n" "Francesco Saverio Giudice (info fsgiudice.com)\n" "Giancarlo Niccolai (gc niccolai.ws)\n" "Gonzalo A. Diethelm (gonzalo.diethelm iname.com)\n" @@ -213,6 +215,7 @@ void hb_compPrintCredits( HB_COMP_DECL ) "Horacio D. Roldan Kasimatis (harbour_ar yahoo.com.ar)\n" "Ignacio Ortiz de Zuniga (ignacio fivetech.com)\n" "Ilias Lazaridis (ilias lazaridis.com)\n" + "Istvan Bisz (istvan.bisz t-online.hu)\n" "Jacek Kubica (kubica wssk.wroc.pl)\n" "Janica Lubos (janica fornax.elf.stuba.sk)\n" "Jean-Francois Lefebvre (mafact) (jfl mafact.com)\n" @@ -253,6 +256,7 @@ void hb_compPrintCredits( HB_COMP_DECL ) "Ron Pinkas (ron profit-master.com)\n" "Ross Presser (ross_presser imtek.com)\n" "Ryszard Glab (rglab imid.med.pl)\n" + "Tamas Tevesz (ice extreme.hu)\n" "Teo Fonrouge (teo windtelsoft.dot.com)\n" "Tim Stone (timstone mstrlink.com)\n" "Tomaz Zupan (tomaz.zupan orpo.si)\n"