diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3b1f66ffc4..a385b6dd2d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-06-20 15:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * src/vm/extend.c + ! Fixed typo in hb_retns(). + 2010-06-21 01:15 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + contrib/hbide/resources/font.png * contrib/hbide/resources/setup.ui @@ -38,7 +42,7 @@ Suppress conversion to upper case - Harbour keywords ( default: false ) Keyword RETURN to be treated as BEGINING-At type ( default: false ) Convert tabs to spaces when a source is loaded ( default: false ) - + Line ending mode: CRLF, CR, LF, Auto ( default: Auto ) Spaces for a tab ( default: 3 ) Auto indent ( default: true ) @@ -51,16 +55,15 @@ Animated display ( default false ) ( in-time ) Font name and size. - + Transitory temp backup period ( default: 60 seconds ) - + Text file extensions: add, delete. - Key/Value pairs : add, delete, up, down + Key/Value pairs : add, delete, up, down Add and type key and associated value. ( just definition now - implementation follows ) - This feature is scheduled to be used extensively. - + This feature is scheduled to be used extensively. 2010-06-20 23:37 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * src/rdd/dbcmd.c diff --git a/harbour/src/vm/extend.c b/harbour/src/vm/extend.c index 73aec5cb8e..c92e50d551 100644 --- a/harbour/src/vm/extend.c +++ b/harbour/src/vm/extend.c @@ -1584,7 +1584,7 @@ void hb_retns( HB_ISIZ nNumber ) HB_TRACE(HB_TR_DEBUG, ("hb_retns(%" HB_PFS "d )", nNumber)); - hb_itemPutNInt( hb_stackReturnItem(), nNumber ); + hb_itemPutNS( hb_stackReturnItem(), nNumber ); } #ifndef HB_LONG_LONG_OFF