Module Name:    src
Committed By:   joerg
Date:           Tue May 24 12:32:36 UTC 2011

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

Log Message:
Doesn't need input.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 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.4 src/usr.bin/m4/tokenizer.l:1.5
--- src/usr.bin/m4/tokenizer.l:1.4	Thu Oct 29 14:49:03 2009
+++ src/usr.bin/m4/tokenizer.l	Tue May 24 12:32:36 2011
@@ -1,5 +1,5 @@
 %{
-/* $NetBSD: tokenizer.l,v 1.4 2009/10/29 14:49:03 christos Exp $ */
+/* $NetBSD: tokenizer.l,v 1.5 2011/05/24 12:32:36 joerg Exp $ */
 /* $OpenBSD: tokenizer.l,v 1.6 2008/08/21 21:00:14 espie Exp $ */
 /*
  * Copyright (c) 2004 Marc Espie <es...@cvs.openbsd.org>
@@ -20,7 +20,7 @@
 #include "nbtool_config.h"
 #endif
 #include "parser.h"
-__RCSID("$NetBSD: tokenizer.l,v 1.4 2009/10/29 14:49:03 christos Exp $");
+__RCSID("$NetBSD: tokenizer.l,v 1.5 2011/05/24 12:32:36 joerg Exp $");
 #include <stdlib.h>
 #include <errno.h>
 #include <stdint.h>
@@ -37,6 +37,7 @@
 %}
 
 %option nounput
+%option noinput
 
 delim 	[ \t\n]
 ws	{delim}+

Reply via email to