From 2a333af85cdbe35e03aeeba2cfaa0584bda73f66 Mon Sep 17 00:00:00 2001 From: Ron Pinkas Date: Sat, 22 Apr 2000 13:22:15 +0000 Subject: [PATCH] 20000422-06:20 GMT-8 Ron Pinkas * source/include/hbvm.h * Corrected comments of hb_vmPushOne(), hb_vmPushZero(), and hb_vmPushByte() --- harbour/ChangeLog | 6 +++++- harbour/include/hbvm.h | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index dd92ef6118..4ff94f533c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,10 +1,14 @@ +20000422-06:20 GMT-8 Ron Pinkas + * source/include/hbvm.h + * Corrected comments of hb_vmPushOne(), hb_vmPushZero(), and hb_vmPushByte() + 20000422-13:50 GMT+1 Ryszard Glab *source/rtl/gtcrs/gtcrs.c *source/rtl/gtcrs/mousecrs.c *fixed arrow keys under xterm *added support for mouse under xterm - + *source/compiler/harbour.c *fixed duplicated variable error when PARAMETER variable was also declared as a MEMVAR variable diff --git a/harbour/include/hbvm.h b/harbour/include/hbvm.h index ae34329359..dd49d32b73 100644 --- a/harbour/include/hbvm.h +++ b/harbour/include/hbvm.h @@ -77,9 +77,9 @@ extern void hb_vmFunction( USHORT uiParams ); /* executes a function saving i extern void hb_vmPush( PHB_ITEM pItem ); /* pushes a generic item onto the stack */ extern void hb_vmPushNil( void ); /* in this case it places nil at self */ extern void hb_vmPushNumber( double dNumber, int iDec ); /* pushes a number on to the stack and decides if it is integer, long or double */ -extern void hb_vmPushOne( void ); /* pushes a 0 onto the stack */ -extern void hb_vmPushZero( void ); /* pushes a 1 onto the stack */ -extern void hb_vmPushByte( BYTE bNumber ); /* pushes a integer number onto the stack */ +extern void hb_vmPushOne( void ); /* pushes a 1 onto the stack */ +extern void hb_vmPushZero( void ); /* pushes a 0 onto the stack */ +extern void hb_vmPushByte( BYTE bNumber ); /* pushes a 1 byte integer number onto the stack */ extern void hb_vmPushInteger( int iNumber ); /* pushes a integer number onto the stack */ extern void hb_vmPushLong( long lNumber ); /* pushes a long number onto the stack */ extern void hb_vmPushDouble( double lNumber, int iDec ); /* pushes a double number onto the stack */