scanner: fix typo.

* src/scan-skel.l (@`): s/emtpy/empty/.
	Reported by Tim Landscheidt.
This commit is contained in:
Akim Demaille
2012-01-11 16:46:36 +01:00
parent 847480ae0f
commit 33a1fa4e81
3 changed files with 9 additions and 2 deletions
+6
View File
@@ -1,3 +1,9 @@
2012-01-11 Akim Demaille <[email protected]>
scanner: fix typo.
* src/scan-skel.l (@`): s/emtpy/empty/.
Reported by Tim Landscheidt.
2012-01-06 Jim Meyering <[email protected]> 2012-01-06 Jim Meyering <[email protected]>
build: avoid warnings about set-but-not-used variables build: avoid warnings about set-but-not-used variables
+1
View File
@@ -98,6 +98,7 @@ Shura [email protected]
Steve Murphy [email protected] Steve Murphy [email protected]
Summum Bonum [email protected] Summum Bonum [email protected]
Tim Josling [email protected] Tim Josling [email protected]
Tim Landscheidt [email protected]
Tim Van Holder [email protected] Tim Van Holder [email protected]
Tom Lane [email protected] Tom Lane [email protected]
Tom Tromey [email protected] Tom Tromey [email protected]
+2 -2
View File
@@ -1,6 +1,6 @@
/* Scan Bison Skeletons. -*- C -*- /* Scan Bison Skeletons. -*- C -*-
Copyright (C) 2001-2007, 2009-2011 Free Software Foundation, Inc. Copyright (C) 2001-2007, 2009-2012 Free Software Foundation, Inc.
This file is part of Bison, the GNU Compiler Compiler. This file is part of Bison, the GNU Compiler Compiler.
@@ -72,7 +72,7 @@ static void fail_for_invalid_at (char const *at);
"@@" fputc ('@', yyout); "@@" fputc ('@', yyout);
"@{" fputc ('[', yyout); "@{" fputc ('[', yyout);
"@}" fputc (']', yyout); "@}" fputc (']', yyout);
"@`" /* Emtpy. Used by b4_cat in ../data/bison.m4. */ "@`" /* Empty. Used by b4_cat in ../data/bison.m4. */
@\n /* Likewise. */ @\n /* Likewise. */
"@oline@" fprintf (yyout, "%d", out_lineno + 1); "@oline@" fprintf (yyout, "%d", out_lineno + 1);