2012-10-08 18:37 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* harbour/src/rtl/cdpapihb.c
    % minor optimization

  * harbour/contrib/hbmisc/numtxtru.prg
    ! fixed SVN attributes
    * indenting
This commit is contained in:
Przemyslaw Czerpak
2012-10-08 16:37:56 +00:00
parent 29729b843c
commit 54b81df2cc
3 changed files with 697 additions and 687 deletions

View File

@@ -16,6 +16,14 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-10-08 18:37 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/rtl/cdpapihb.c
% minor optimization
* harbour/contrib/hbmisc/numtxtru.prg
! fixed SVN attributes
* indenting
2012-10-08 18:11 UTC+0200 Viktor Szakats (harbour syenar.net)
+ contrib/hbmisc/tests/numtxtru.prg
* contrib/hbmisc/numtxtru.prg

File diff suppressed because it is too large Load Diff

View File

@@ -221,7 +221,8 @@ HB_FUNC( HB_STRTOUTF8 )
if( nLen )
{
PHB_CODEPAGE cdp = HB_ISCHAR( 2 ) ? hb_cdpFindExt( hb_parc( 2 ) ) : hb_vmCDP();
const char * szCP = hb_parc( 2 );
PHB_CODEPAGE cdp = szCP ? hb_cdpFindExt( szCP ) : hb_vmCDP();
if( cdp )
{
@@ -256,7 +257,8 @@ HB_FUNC( HB_UTF8TOSTR )
if( nLen )
{
PHB_CODEPAGE cdp = HB_ISCHAR( 2 ) ? hb_cdpFindExt( hb_parc( 2 ) ) : hb_vmCDP();
const char * szCP = hb_parc( 2 );
PHB_CODEPAGE cdp = szCP ? hb_cdpFindExt( szCP ) : hb_vmCDP();
if( cdp )
{