diff --git a/harbour/ChangeLog.txt b/harbour/ChangeLog.txt index fa0535b840..b4e1560e77 100644 --- a/harbour/ChangeLog.txt +++ b/harbour/ChangeLog.txt @@ -10,6 +10,19 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-03-09 14:06 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/hbct/tests/charadd.prg + * contrib/hbct/tests/charand.prg + * contrib/hbct/tests/charnot.prg + * contrib/hbct/tests/charor.prg + * contrib/hbct/tests/charrll.prg + * contrib/hbct/tests/charrlr.prg + * contrib/hbct/tests/charshl.prg + * contrib/hbct/tests/charshr.prg + * contrib/hbct/tests/charsub.prg + * contrib/hbct/tests/tab.prg + ! fix to prev when run under Clipper + 2013-03-09 12:38 UTC+0100 Viktor Szakats (harbour syenar.net) * utils/hbmk2/hbmk2.prg + show warning when -sign was requested but no tool could diff --git a/harbour/contrib/hbct/tests/charadd.prg b/harbour/contrib/hbct/tests/charadd.prg index 6435b5ec6e..db62a92cc3 100644 --- a/harbour/contrib/hbct/tests/charadd.prg +++ b/harbour/contrib/hbct/tests/charadd.prg @@ -55,7 +55,7 @@ #ifdef __HARBOUR__ #require "hbct" #else -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/charand.prg b/harbour/contrib/hbct/tests/charand.prg index 1c26226e3c..9c9e13e6f0 100644 --- a/harbour/contrib/hbct/tests/charand.prg +++ b/harbour/contrib/hbct/tests/charand.prg @@ -55,7 +55,7 @@ #ifdef __HARBOUR__ #require "hbct" #else -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/charnot.prg b/harbour/contrib/hbct/tests/charnot.prg index 9c107c83b5..bea30d5dc1 100644 --- a/harbour/contrib/hbct/tests/charnot.prg +++ b/harbour/contrib/hbct/tests/charnot.prg @@ -56,7 +56,7 @@ #require "hbct" #else #define hb_ntos( n ) LTrim( Str( n ) ) -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/charor.prg b/harbour/contrib/hbct/tests/charor.prg index cb6b80e56f..b109fd9cde 100644 --- a/harbour/contrib/hbct/tests/charor.prg +++ b/harbour/contrib/hbct/tests/charor.prg @@ -55,7 +55,7 @@ #ifdef __HARBOUR__ #require "hbct" #else -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/charrll.prg b/harbour/contrib/hbct/tests/charrll.prg index 4756f10109..85bcb9d49b 100644 --- a/harbour/contrib/hbct/tests/charrll.prg +++ b/harbour/contrib/hbct/tests/charrll.prg @@ -56,7 +56,7 @@ #require "hbct" #else #define hb_ntos( n ) LTrim( Str( n ) ) -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/charrlr.prg b/harbour/contrib/hbct/tests/charrlr.prg index b579cbc870..7388f74946 100644 --- a/harbour/contrib/hbct/tests/charrlr.prg +++ b/harbour/contrib/hbct/tests/charrlr.prg @@ -56,7 +56,7 @@ #require "hbct" #else #define hb_ntos( n ) LTrim( Str( n ) ) -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/charshl.prg b/harbour/contrib/hbct/tests/charshl.prg index 85083e9342..d847904b88 100644 --- a/harbour/contrib/hbct/tests/charshl.prg +++ b/harbour/contrib/hbct/tests/charshl.prg @@ -56,7 +56,7 @@ #require "hbct" #else #define hb_ntos( n ) LTrim( Str( n ) ) -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/charshr.prg b/harbour/contrib/hbct/tests/charshr.prg index 1879776c83..a7e5b5c2c6 100644 --- a/harbour/contrib/hbct/tests/charshr.prg +++ b/harbour/contrib/hbct/tests/charshr.prg @@ -56,7 +56,7 @@ #require "hbct" #else #define hb_ntos( n ) LTrim( Str( n ) ) -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/charsub.prg b/harbour/contrib/hbct/tests/charsub.prg index 3178c6c80b..93ec10c0b0 100644 --- a/harbour/contrib/hbct/tests/charsub.prg +++ b/harbour/contrib/hbct/tests/charsub.prg @@ -55,7 +55,7 @@ #ifdef __HARBOUR__ #require "hbct" #else -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main() diff --git a/harbour/contrib/hbct/tests/tab.prg b/harbour/contrib/hbct/tests/tab.prg index 1c9ca3ed53..9bf54c6866 100644 --- a/harbour/contrib/hbct/tests/tab.prg +++ b/harbour/contrib/hbct/tests/tab.prg @@ -55,7 +55,7 @@ #ifdef __HARBOUR__ #require "hbct" #else -#define hb_BChar( ) Chr( ) +#define hb_BChar( n ) Chr( n ) #endif PROCEDURE Main()