Module Name:    src
Committed By:   lukem
Date:           Sun Apr 12 03:15:35 UTC 2009

Modified Files:
        src/usr.bin/fgen: fgen.l

Log Message:
add missing commas in initializer for .d and .h macros,
which appear to have broken the intended behavior of those.


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/usr.bin/fgen/fgen.l

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/fgen/fgen.l
diff -u src/usr.bin/fgen/fgen.l:1.28 src/usr.bin/fgen/fgen.l:1.29
--- src/usr.bin/fgen/fgen.l:1.28	Sun Apr 12 03:13:09 2009
+++ src/usr.bin/fgen/fgen.l	Sun Apr 12 03:15:35 2009
@@ -1,5 +1,5 @@
 %{
-/*	$NetBSD: fgen.l,v 1.28 2009/04/12 03:13:09 lukem Exp $	*/
+/*	$NetBSD: fgen.l,v 1.29 2009/04/12 03:15:35 lukem Exp $	*/
 /* FLEX input for FORTH input file scanner */
 /*  
  * Copyright (c) 1998 Eduardo Horvath.
@@ -47,7 +47,7 @@
 #endif
 
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: fgen.l,v 1.28 2009/04/12 03:13:09 lukem Exp $");
+__RCSID("$NetBSD: fgen.l,v 1.29 2009/04/12 03:15:35 lukem Exp $");
 #endif
 
 %}
@@ -704,13 +704,13 @@
 	{ "/c*",	"chars" },
 	{ "ca1+",	"char+" },
 	{ "carret",	"b(lit) 00 00 00 0x0d" },
-	{ ".d"		"base @ swap 0x0a base ! . base !" },
+	{ ".d",		"base @ swap 0x0a base ! . base !" },
 	{ "decode-bytes", ">r over r@ + swap r@ - rot r>" },
 	{ "3drop",	"drop 2drop" },
 	{ "3dup",	"2 pick 2 pick 2 pick" },
 	{ "erase",	"0 fill" },
 	{ "false",	"0" },
-	{ ".h"		"base @ swap 0x10 base ! . base !" },
+	{ ".h",		"base @ swap 0x10 base ! . base !" },
 	{ "linefeed",	"b(lit) 00 00 00 0x0a" },
 	{ "/n*",	"cells" },
 	{ "na1+",	"cell+", },

Reply via email to