2003-02-18 22:05 UTC+0100 Tomaz Zupan <tomaz.zupan@orpo.si>
This commit is contained in:
@@ -8,6 +8,35 @@
|
||||
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2003-02-18 22:05 UTC+0100 Tomaz Zupan <tomaz.zupan@orpo.si>
|
||||
* include/hbdbf.h
|
||||
* include/hbdbsort.h
|
||||
* include/hbexprc.c
|
||||
* include/hboo.ch
|
||||
* source/common/hbfhnd.c
|
||||
* source/compiler/genc.c
|
||||
* source/compiler/harbour.c
|
||||
* source/compiler/hbfix.c
|
||||
* source/compiler/hbpcode.c
|
||||
* source/pp/ppcomp.c
|
||||
* source/rdd/hbdbsort.c
|
||||
* source/rtl/at.c
|
||||
* source/rtl/descend.c
|
||||
* source/rtl/memoline.c
|
||||
* source/rtl/philes.c
|
||||
* source/rtl/philesx.c
|
||||
* source/rtl/strings.c
|
||||
* source/rtl/gtcrs/gtcrs.c
|
||||
* source/rtl/gtcrs/kbdcrs.c
|
||||
* source/vm/debug.c
|
||||
* source/vm/dynsym.c
|
||||
* source/vm/eval.c
|
||||
* source/vm/extend.c
|
||||
* source/vm/macro.c
|
||||
* source/vm/memvars.c
|
||||
* source/vm/runner.c
|
||||
! Added newline to the end of file, to avoid annoying warning
|
||||
|
||||
2003-02-18 23:05 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
|
||||
* source/rdd/dbfntx/dbfntx1.c
|
||||
! Stupid bug is fixed, which was introduced recently
|
||||
@@ -24,12 +53,12 @@
|
||||
|
||||
2003-02-15 11:00 UTC+0100 Tomaz Zupan <tomaz.zupan@orpo.si>
|
||||
* config/linux/global.cf
|
||||
- removed PRG_USR directive, because it is no longer needed
|
||||
- removed PRG_USR directive, because it is no longer needed
|
||||
to compile dbfsdf.prg
|
||||
* source/rtl/dbsdf.prg
|
||||
+ Automatic EOL recognition. FindEOL() recognises LF,CR+LF and CR
|
||||
as newline delimiters
|
||||
|
||||
|
||||
2003-02-14 22:05 UTC+0100 Tomaz Zupan <tomaz.zupan@orpo.si>
|
||||
* include/hbapi.h
|
||||
* include/hbcomp.h
|
||||
|
||||
@@ -109,4 +109,4 @@ typedef DBFFIELD * LPDBFFIELD;
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* HB_DBF_H_ */
|
||||
#endif /* HB_DBF_H_ */
|
||||
|
||||
@@ -94,4 +94,4 @@ extern void hb_dbQSortComplete( LPDBQUICKSORT pQuickSort );
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* HB_DBSORT_H_ */
|
||||
#endif /* HB_DBSORT_H_ */
|
||||
|
||||
@@ -505,4 +505,4 @@ HB_EXPR_PTR hb_compExprReducePlusStrings( HB_EXPR_PTR pLeft, HB_EXPR_PTR pRight,
|
||||
HB_SYMBOL_UNUSED( HB_MACRO_PARAM ); /* to suppress BCC warning */
|
||||
return pLeft;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -117,4 +117,4 @@
|
||||
#define HB_OO_CLSM_PFUNCTION 2
|
||||
#define HB_OO_CLSM_SCOPE 3
|
||||
|
||||
#endif /* HB_OO_CH_ */
|
||||
#endif /* HB_OO_CH_ */
|
||||
|
||||
@@ -123,4 +123,5 @@ void hb_files_setup( void )
|
||||
_nfile = _NFILE_;
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
@@ -2014,4 +2014,4 @@ static void hb_compGenCCompact( PFUNCTION pFunc, FILE * yyc )
|
||||
|
||||
if( nChar != 0)
|
||||
fprintf( yyc, "\n" );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4240,4 +4240,4 @@ int hb_compAutoOpen( char * szPrg, BOOL * pbSkipGen )
|
||||
}
|
||||
|
||||
return iStatus;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -420,4 +420,4 @@ void hb_compFixFuncPCode( PFUNCTION pFunc )
|
||||
assert( HB_P_LAST_PCODE == sizeof( s_fixlocals_table ) / sizeof( HB_FIX_FUNC_PTR ) );
|
||||
|
||||
hb_compPCodeEval( pFunc, ( HB_PCODE_FUNC_PTR * ) s_fixlocals_table, ( void * ) &fix_info );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3178,4 +3178,4 @@ void hb_compGenPCodeN( BYTE * pBuffer, ULONG ulSize, BOOL bStackAffected )
|
||||
|
||||
if( hb_comp_iWarnings >= 3 && bStackAffected )
|
||||
hb_compStrongType( ulSize );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -381,4 +381,4 @@ static int strncmp_nocase( char* s1, char* s2, int n )
|
||||
if( toupper(*s1) != *s2 )
|
||||
return ( toupper(*s1) - *s2 );
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -247,4 +247,4 @@ void hb_dbQSortComplete( LPDBQUICKSORT pQuickSort )
|
||||
}
|
||||
}
|
||||
hb_dbQSortExit( pQuickSort );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -103,4 +103,4 @@ HB_FUNC( AT )
|
||||
hb_errRT_BASE_SubstR( EG_ARG, 1108, NULL, "AT", 2, hb_paramError( 1 ), hb_paramError( 2 ) );
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -92,4 +92,4 @@ HB_FUNC( DESCEND )
|
||||
else if( HB_IS_LOGICAL( pItem ) )
|
||||
hb_retl( ! hb_itemGetL( pItem ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -830,4 +830,4 @@ BOOL hb_gt_PreExt()
|
||||
BOOL hb_gt_PostExt()
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -392,4 +392,4 @@ static void hb_gt_Add_terminfo_keymap( int InkeyCode, char * capname )
|
||||
code = tigetstr( capname );
|
||||
if( ( code != NULL ) && ( code != ( char * ) -1 ) )
|
||||
hb_gt_Add_keymap( InkeyCode, code );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -180,4 +180,4 @@ HB_FUNC( MEMOLINE )
|
||||
}
|
||||
else
|
||||
hb_retc( NULL );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -235,4 +235,4 @@ HB_FUNC( HB_F_EOF )
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -84,3 +84,4 @@ HB_FUNC( CURDRIVE )
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
@@ -85,4 +85,4 @@ int hb_strnicmp( const char * s1, const char * s2, size_t count )
|
||||
}
|
||||
|
||||
return ( count == 0 ) ? 0 : toupper( *s1 ) - toupper( *s2 );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -224,4 +224,4 @@ HB_FUNC( __VMVARLSET )
|
||||
pBase = hb_stack.pItems + ( *pBase )->item.asSymbol.stackbase;
|
||||
|
||||
hb_itemCopy( *(pBase + 1 + hb_parni( 2 )), *(hb_stack.pBase + 4) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -398,4 +398,4 @@ HB_FUNC( __DYNSGETPRF ) /* profiler: It returns an array with a function or proc
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -387,4 +387,4 @@ HB_FUNC( HB_FORNEXT ) /* nStart, nEnd | bEnd, bCode, nStep */
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -864,4 +864,4 @@ int HB_EXPORT hb_stornd( double dNumber, int iParam, ... )
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1551,4 +1551,4 @@ void hb_compCodeBlockEnd( HB_MACRO_DECL )
|
||||
/* free memory allocated for a codeblock */
|
||||
hb_xfree( ( void * ) pCodeblock->pCode );
|
||||
hb_xfree( ( void * ) pCodeblock );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1607,4 +1607,4 @@ PHB_ITEM hb_memvarGetValueByHandle( HB_HANDLE hMemvar )
|
||||
return &s_globalTable[ hMemvar ].item;
|
||||
else
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -717,4 +717,4 @@ static void hb_hrbAsmPatchRelative( BYTE * pCode, ULONG ulOffset,
|
||||
/* #elseif 32 bits and high byte first */
|
||||
/* #elseif ... */
|
||||
/* #endif */
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user