From: Akim Demaille <demaille@gostai.com>
Date: Wed, 11 Jan 2012 15:46:36 +0000 (+0100)
Subject: scanner: fix typo.
X-Git-Tag: v2.5.1_rc2~143
X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/33a1fa4e81b1daae2ced81644928f458903c4ff0

scanner: fix typo.

	* src/scan-skel.l (@`): s/emtpy/empty/.
	Reported by Tim Landscheidt.
---

diff --git a/ChangeLog b/ChangeLog
index 31a14bb8..378c1920 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-01-11  Akim Demaille  <demaille@gostai.com>
+
+	scanner: fix typo.
+	* src/scan-skel.l (@`): s/emtpy/empty/.
+	Reported by Tim Landscheidt.
+
 2012-01-06  Jim Meyering  <meyering@redhat.com>
 
 	build: avoid warnings about set-but-not-used variables
diff --git a/THANKS b/THANKS
index 8d044c60..d50b8d24 100644
--- a/THANKS
+++ b/THANKS
@@ -98,6 +98,7 @@ Shura                     debil_urod@ngs.ru
 Steve Murphy              murf@parsetree.com
 Summum Bonum              sum@geekhouse.org
 Tim Josling               tej@melbpc.org.au
+Tim Landscheidt           tim@tim-landscheidt.de
 Tim Van Holder            tim.van.holder@pandora.be
 Tom Lane                  tgl@sss.pgh.pa.us
 Tom Tromey                tromey@cygnus.com
diff --git a/src/scan-skel.l b/src/scan-skel.l
index f2653bee..5fd9b20d 100644
--- a/src/scan-skel.l
+++ b/src/scan-skel.l
@@ -1,6 +1,6 @@
 /* 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.
 
@@ -72,7 +72,7 @@ static void fail_for_invalid_at (char const *at);
 "@@" 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.  */
 
 "@oline@"  fprintf (yyout, "%d", out_lineno + 1);