Date: Sat, 15 Sep 2012 18:53:01 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r240537 - in stable/9/usr.bin: mkcsmapper mkesdb Message-ID: <201209151853.q8FIr16a009782@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dim Date: Sat Sep 15 18:53:00 2012 New Revision: 240537 URL: http://svn.freebsd.org/changeset/base/240537 Log: MFC r238197: Fix spelling PR: bin/167480 Submitted by: zeising Approved by: cperciva MFC r240365: Ensure mkcsmapper and mkesdb compile with clang, if WITH_ICONV is defined. PR: bin/167481 Submitted by: zeising Modified: stable/9/usr.bin/mkcsmapper/lex.l stable/9/usr.bin/mkesdb/lex.l Directory Properties: stable/9/usr.bin/mkcsmapper/ (props changed) stable/9/usr.bin/mkesdb/ (props changed) Modified: stable/9/usr.bin/mkcsmapper/lex.l ============================================================================== --- stable/9/usr.bin/mkcsmapper/lex.l Sat Sep 15 18:34:12 2012 (r240536) +++ stable/9/usr.bin/mkcsmapper/lex.l Sat Sep 15 18:53:00 2012 (r240537) @@ -43,6 +43,7 @@ int line_number = 1; %} +%option noinput %option nounput %x COMMENT @@ -57,7 +58,7 @@ int line_number = 1; <COMMENT>[\n] { line_number++; } <COMMENT>. { } <COMMENT><<EOF>> { - yyerror("unexpected file end (unterminate comment)\n"); + yyerror("unexpected file end (unterminated comment)\n"); exit(1); } Modified: stable/9/usr.bin/mkesdb/lex.l ============================================================================== --- stable/9/usr.bin/mkesdb/lex.l Sat Sep 15 18:34:12 2012 (r240536) +++ stable/9/usr.bin/mkesdb/lex.l Sat Sep 15 18:53:00 2012 (r240537) @@ -45,6 +45,7 @@ int line_number = 1; %} +%option noinput %option nounput %x COMMENT @@ -59,7 +60,7 @@ int line_number = 1; <COMMENT>[\n] { line_number++; } <COMMENT>. { } <COMMENT><<EOF>> { - yyerror("unexpected file end (unterminate comment)\n"); + yyerror("unexpected file end (unterminated comment)\n"); exit(1); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209151853.q8FIr16a009782>