From f089898c0044c8ddb096e4e0a1fa26ab1187560a Mon Sep 17 00:00:00 2001 From: Ron Pinkas Date: Thu, 2 Aug 2001 16:56:42 +0000 Subject: [PATCH] 2001-08-02 10:00 UTC-0800 Ron Pinkas * contrib/dot/pp.txt * Corrected typos. * include/hbpcode.h * Corrected comments for HB_P_MACROLIST and HB_P_MACROLISTEND --- harbour/ChangeLog | 7 +++++++ harbour/contrib/dot/pp.txt | 8 ++++---- harbour/include/hbpcode.h | 4 ++-- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index dd503f1a0f..5821e42e98 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,10 @@ +2001-08-02 10:00 UTC-0800 Ron Pinkas + * contrib/dot/pp.txt + * Corrected typos. + + * include/hbpcode.h + * Corrected comments for HB_P_MACROLIST and HB_P_MACROLISTEND + 2001-07-31 10:10 UTC-0800 Ron Pinkas * source/vm/arrayshb.c + Added HB_FUNC( HB_AEXPRESSION ) diff --git a/harbour/contrib/dot/pp.txt b/harbour/contrib/dot/pp.txt index fda97e7c30..6022232b14 100644 --- a/harbour/contrib/dot/pp.txt +++ b/harbour/contrib/dot/pp.txt @@ -1,9 +1,9 @@ PP has 3 personalities which are tied tightly together. 1. What is supposed to be 100% Clipper compatible Pre-Processor. Executing - PP followed by a source file name will create which is - the equivalent of the Clipper file. In this mode there - are few optional switches. + PP followed by a source file name and the -P switch, will create + which is the equivalent of the Clipper file. + In this mode there are few optional switches. PP filename[.ext] [-U][-DM][-DE][-DP][-CCH] @@ -47,7 +47,7 @@ PP has 3 personalities which are tied tightly together. e. The executed module is compiled with -n option (for now). - This will create rp_dot.pp$ compilation tace file. + This will create rp_dot.pp$ compilation trace file. 3. Finally, PP is a limited Harbour Interpreter. Subject to those same few limitations it can execute most of Harbour syntax. Executing PP followed diff --git a/harbour/include/hbpcode.h b/harbour/include/hbpcode.h index c455dfcf57..b4db8c97c1 100644 --- a/harbour/include/hbpcode.h +++ b/harbour/include/hbpcode.h @@ -186,8 +186,8 @@ typedef enum HB_P_TRUE, /* 120 pushes true on the virtual machine stack */ HB_P_ZERO, /* 121 places a ZERO on the virtual machine stack */ HB_P_ONE, /* 122 places a ONE on the virtual machine stack */ - HB_P_MACROLIST, /* 122 places a ONE on the virtual machine stack */ - HB_P_MACROLISTEND, /* 123 places a ONE on the virtual machine stack */ + HB_P_MACROLIST, /* 122 HB_P_MACROPUSHLIST enevelope start. */ + HB_P_MACROLISTEND, /* 123 HB_P_MACROPUSHLIST enevelope end. */ /* NOTE: This have to be the last definition */ HB_P_LAST_PCODE /* 123 this defines the number of defined pcodes */ } HB_PCODE;