summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <demaille@gostai.com>2012-01-11 16:46:36 +0100
committerAkim Demaille <demaille@gostai.com>2012-01-11 16:49:53 +0100
commit139c548a02eb3a3586d4ef9f8c38a49357feade7 (patch)
tree0ab0675e876789b7e2de2a2b1d6dd835c08029c2
parent89d4466b6bcd2cf3eb995a087306c01a425bb5c9 (diff)
downloadbison-139c548a02eb3a3586d4ef9f8c38a49357feade7.tar.gz
scanner: fix typo.
* src/scan-skel.l (@`): s/emtpy/empty/. Reported by Tim Landscheidt. Conflicts: src/scan-skel.l
-rw-r--r--ChangeLog6
-rw-r--r--THANKS1
-rw-r--r--src/scan-skel.l4
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 234df12b..c6d66666 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 17243d49..7603762d 100644
--- a/THANKS
+++ b/THANKS
@@ -100,6 +100,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 a89e13cc..33c264a1 100644
--- a/src/scan-skel.l
+++ b/src/scan-skel.l
@@ -1,6 +1,6 @@
/* Scan Bison Skeletons. -*- C -*-
- Copyright (C) 2001-2011 Free Software Foundation, Inc.
+ Copyright (C) 2001-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);