ChangeLog 20000117-12:25 GMT+1

This commit is contained in:
Ryszard Glab
2000-01-17 11:11:24 +00:00
parent 92569b275a
commit 2859de086f
4 changed files with 14 additions and 6 deletions

View File

@@ -1,3 +1,14 @@
20000117-12:25 GMT+1 Ryszard Glab <rglab@imid.med.pl>
*source/rtl/achoice.prg
*source/rtl/input.prg
* macro related code are active now
*source/compiler/harbour.y
* function that initializes static variables is generated
properly when ANNOUNCE statement is used
20000116-20:30 GMT+1 Ryszard Glab <rglab@imid.med.pl>
*source/rtl/harbinit.prg

View File

@@ -1446,6 +1446,7 @@ int hb_compYACCMain( char * szName )
pSym = hb_compSymbolAdd( hb_comp_pInitFunc->szName, NULL );
pSym->cScope |= hb_comp_pInitFunc->cScope;
hb_comp_functions.pLast->pNext = hb_comp_pInitFunc;
hb_comp_functions.pLast = hb_comp_pInitFunc;
++hb_comp_functions.iCount;
}

View File

@@ -149,9 +149,7 @@ FUNCTION AChoice( nTop, nLeft, nBottom, nRight, acItems, xSelect, xUserFunc, nPo
lFinished := .T.
nPos := 0
ELSE
/* TODO: When macro evaluation will work, this should be commented out:
alSelect[ nCntr ] := &( xSelect[ nCntr ] )
*/
alSelect[ nCntr ] := &( xSelect[ nCntr ] )
ENDIF
ELSE
alSelect[ nCntr ] := xSelect[ nCntr ]

View File

@@ -67,6 +67,4 @@
FUNCTION __Input( cMessage )
LOCAL cString := __Accept( cMessage )
// TOFIX: Uncomment this when macros are implemented
// RETURN iif( Empty( cString ), NIL, &cString )
RETURN ""
RETURN iif( Empty( cString ), NIL, &cString )