From 9ce084bc352fb67271e9e2aa0abca3a5ae4b60e6 Mon Sep 17 00:00:00 2001 From: Brian Hays Date: Sat, 25 Aug 2001 22:06:39 +0000 Subject: [PATCH] 2001-08-25 03:05 UTC-0800 Brian Hays --- harbour/ChangeLog | 9 +++++++++ harbour/contrib/dot/pp.prg | 6 ++++++ harbour/source/compiler/harbour.sly | 1 + 3 files changed, 16 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 43eca5fb8d..a9491a9688 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,12 @@ +2001-08-25 03:05 UTC-0800 Brian Hays + * 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 +source/rtl/pushbtn.prg *Push Button Class Compatible with Ca-Clipper 5.3 diff --git a/harbour/contrib/dot/pp.prg b/harbour/contrib/dot/pp.prg index 4d731f588b..ac55a544c8 100644 --- a/harbour/contrib/dot/pp.prg +++ b/harbour/contrib/dot/pp.prg @@ -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 diff --git a/harbour/source/compiler/harbour.sly b/harbour/source/compiler/harbour.sly index 7d7abe4642..914655a308 100644 --- a/harbour/source/compiler/harbour.sly +++ b/harbour/source/compiler/harbour.sly @@ -426,6 +426,7 @@ CrlfStmnt : { hb_compLinePushIfInside(); } Crlf LineStat : Crlf { $$ = 0; hb_comp_bDontGenLineNum = TRUE; } | Statement { $$ = 1; } | Declaration { $$ = 1; } + | Line { $$ = 1; } ; Statements : LineStat { $$ = $1; }