From owner-svn-src-head@FreeBSD.ORG Thu Oct 14 19:19:19 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBB321065696; Thu, 14 Oct 2010 19:19:19 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DA20B8FC13; Thu, 14 Oct 2010 19:19:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o9EJJJ7j034035; Thu, 14 Oct 2010 19:19:19 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9EJJJIc034032; Thu, 14 Oct 2010 19:19:19 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201010141919.o9EJJJIc034032@svn.freebsd.org> From: Rui Paulo Date: Thu, 14 Oct 2010 19:19:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r213845 - head/sys/dev/aic7xxx/aicasm X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Oct 2010 19:19:20 -0000 Author: rpaulo Date: Thu Oct 14 19:19:19 2010 New Revision: 213845 URL: http://svn.freebsd.org/changeset/base/213845 Log: Revert r213765. This is required because our build infrastructure uses the host lex instead of the lex built during buildworld. I will MFC the lex changes soon and in a few weeks this I'll commit again r213765. Modified: head/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l head/sys/dev/aic7xxx/aicasm/aicasm_scan.l Modified: head/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l ============================================================================== --- head/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l Thu Oct 14 18:31:40 2010 (r213844) +++ head/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l Thu Oct 14 19:19:19 2010 (r213845) @@ -61,7 +61,6 @@ #include "aicasm_symbol.h" #include "aicasm_macro_gram.h" -#define YY_NO_INPUT #define MAX_STR_CONST 4096 static char string_buf[MAX_STR_CONST]; static char *string_buf_ptr; Modified: head/sys/dev/aic7xxx/aicasm/aicasm_scan.l ============================================================================== --- head/sys/dev/aic7xxx/aicasm/aicasm_scan.l Thu Oct 14 18:31:40 2010 (r213844) +++ head/sys/dev/aic7xxx/aicasm/aicasm_scan.l Thu Oct 14 19:19:19 2010 (r213845) @@ -61,7 +61,6 @@ #include "aicasm_symbol.h" #include "aicasm_gram.h" -#define YY_NO_INPUT /* This is used for macro body capture too, so err on the large size. */ #define MAX_STR_CONST 4096 static char string_buf[MAX_STR_CONST];