Module Name:    src
Committed By:   christos
Date:           Wed Oct 28 21:42:47 UTC 2009

Modified Files:
        src/usr.bin/m4: tokenizer.l

Log Message:
more no unput


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/m4/tokenizer.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/m4/tokenizer.l
diff -u src/usr.bin/m4/tokenizer.l:1.2 src/usr.bin/m4/tokenizer.l:1.3
--- src/usr.bin/m4/tokenizer.l:1.2	Mon Oct 26 17:11:28 2009
+++ src/usr.bin/m4/tokenizer.l	Wed Oct 28 17:42:47 2009
@@ -1,5 +1,5 @@
 %{
-/* $NetBSD: tokenizer.l,v 1.2 2009/10/26 21:11:28 christos Exp $ */
+/* $NetBSD: tokenizer.l,v 1.3 2009/10/28 21:42:47 christos Exp $ */
 /* $OpenBSD: tokenizer.l,v 1.6 2008/08/21 21:00:14 espie Exp $ */
 /*
  * Copyright (c) 2004 Marc Espie <[email protected]>
@@ -20,7 +20,7 @@
 #include "nbtool_config.h"
 #endif
 #include "parser.h"
-__RCSID("$NetBSD: tokenizer.l,v 1.2 2009/10/26 21:11:28 christos Exp $");
+__RCSID("$NetBSD: tokenizer.l,v 1.3 2009/10/28 21:42:47 christos Exp $");
 #include <stdlib.h>
 #include <errno.h>
 #include <stdint.h>
@@ -33,6 +33,8 @@
 
 int32_t number(void);
 int32_t parse_radix(void);
+
+#define YY_NO_UNPUT
 %}
 
 delim 	[ \t\n]

Reply via email to