2001-08-25 03:05 UTC-0800 Brian Hays <bhays@abacuslaw.com>

This commit is contained in:
Brian Hays
2001-08-25 22:06:39 +00:00
parent 21a4476e0a
commit 9ce084bc35
3 changed files with 16 additions and 0 deletions

View File

@@ -1,3 +1,12 @@
2001-08-25 03:05 UTC-0800 Brian Hays <bhays@abacuslaw.com>
* contrib/dot/pp.prg
* added note: This is being expanded independently from Harbour
at this Sourceforge project:
http://sourceforge.net/projects/xbase-script
* source/compiler/harbour.sly
* copied Ryszard's last fix to harbour.y
2001-08-24 22:15 GMT -3 Luiz Rafael Culik <culik@sl.conex.net>
+source/rtl/pushbtn.prg
*Push Button Class Compatible with Ca-Clipper 5.3

View File

@@ -19,6 +19,12 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
* their web site at http://www.gnu.org/).
Note: This is being expanded independently from Harbour
at this Sourceforge project:
http://sourceforge.net/projects/xbase-script
*/
#DEFINE MAX_CICLES 64

View File

@@ -426,6 +426,7 @@ CrlfStmnt : { hb_compLinePushIfInside(); } Crlf
LineStat : Crlf { $<lNumber>$ = 0; hb_comp_bDontGenLineNum = TRUE; }
| Statement { $<lNumber>$ = 1; }
| Declaration { $<lNumber>$ = 1; }
| Line { $<lNumber>$ = 1; }
;
Statements : LineStat { $<lNumber>$ = $<lNumber>1; }