2001-08-02 10:00 UTC-0800 Ron Pinkas <ron@profit-master.com>

* contrib/dot/pp.txt
     * Corrected typos.

   * include/hbpcode.h
     * Corrected comments for HB_P_MACROLIST and HB_P_MACROLISTEND
This commit is contained in:
Ron Pinkas
2001-08-02 16:56:42 +00:00
parent 0013eb731b
commit f089898c00
3 changed files with 13 additions and 6 deletions

View File

@@ -1,3 +1,10 @@
2001-08-02 10:00 UTC-0800 Ron Pinkas <ron@profit-master.com>
* 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 <ron@profit-master.com>
* source/vm/arrayshb.c
+ Added HB_FUNC( HB_AEXPRESSION )

View File

@@ -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 <filename.pp$> which is
the equivalent of the Clipper <filename.ppo> file. In this mode there
are few optional switches.
PP followed by a source file name and the -P switch, will create
<filename.pp$> which is the equivalent of the Clipper <filename.ppo> 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

View File

@@ -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;