ChangeLog 19990909-16:05 GMT+2

This commit is contained in:
Ryszard Glab
1999-09-09 14:13:06 +00:00
parent 33f38ed21f
commit 65ee0494a4
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
19990909-16:05 GMT+2 Ryszard Glab <rglab@imid.med.pl>
*source/rtl/memvarbl.prg
+ corrected to allow setings of NIL value
19990909-13:00 GMT+2 Ryszard Glab <rglab@imid.med.pl>
*source/runner/stdalone/external.prg

View File

@@ -77,4 +77,4 @@
*/
FUNCTION MEMVARBLOCK( cMemvar )
RETURN { |x| IIF( x==NIL, __mvGET(cMemvar), __mvPUT(cMemvar,x) ) }
RETURN { |x| IIF( PCOUNT()==0, __mvGET(cMemvar), __mvPUT(cMemvar,x) ) }