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); } _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"