mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
scanner: fix typo.
* src/scan-skel.l (@`): s/emtpy/empty/. Reported by Tim Landscheidt.
This commit is contained in:
@@ -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>
|
2012-01-06 Jim Meyering <meyering@redhat.com>
|
||||||
|
|
||||||
build: avoid warnings about set-but-not-used variables
|
build: avoid warnings about set-but-not-used variables
|
||||||
|
|||||||
1
THANKS
1
THANKS
@@ -98,6 +98,7 @@ Shura debil_urod@ngs.ru
|
|||||||
Steve Murphy murf@parsetree.com
|
Steve Murphy murf@parsetree.com
|
||||||
Summum Bonum sum@geekhouse.org
|
Summum Bonum sum@geekhouse.org
|
||||||
Tim Josling tej@melbpc.org.au
|
Tim Josling tej@melbpc.org.au
|
||||||
|
Tim Landscheidt tim@tim-landscheidt.de
|
||||||
Tim Van Holder tim.van.holder@pandora.be
|
Tim Van Holder tim.van.holder@pandora.be
|
||||||
Tom Lane tgl@sss.pgh.pa.us
|
Tom Lane tgl@sss.pgh.pa.us
|
||||||
Tom Tromey tromey@cygnus.com
|
Tom Tromey tromey@cygnus.com
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user