]> git.saurik.com Git - bison.git/commitdiff
Typos and Copyright.
authorAkim Demaille <akim@epita.fr>
Mon, 13 Aug 2001 14:51:15 +0000 (14:51 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 13 Aug 2001 14:51:15 +0000 (14:51 +0000)
src/bison.simple
src/output.c

index 7a374ee53efd24413f6166216ac36990658c7ecc..a073070c686ccb8792b9051033a68f529ad31cc8 100644 (file)
@@ -1,7 +1,7 @@
 /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
 #line
 /* Skeleton output parser for bison,
-   Copyright 1984, 1989, 1990, 2000 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 1990, 2000, 2001 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
index b86f461134c38884a62a8509f4c39875c4ccbd33..d5c3b990517640fd95411d199a6a03706e1534fd 100644 (file)
@@ -1,5 +1,5 @@
 /* Output the generated parsing program for bison,
-   Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.
+   Copyright 1984, 1986, 1989, 1992, 2000, 2001 Free Software Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
 
@@ -293,7 +293,7 @@ output_token_translations (void)
 {
   obstack_sgrow (&table_obstack, "\
 \n\
-/* YYRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */\n");
+/* YYTRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */\n");
 
   if (translations)
     {
@@ -304,7 +304,7 @@ output_token_translations (void)
               max_user_token_number, nsyms);
 
       output_short_or_char_table (&table_obstack,
-            "YYRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX",
+            "YYTRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX",
                    ntokens < 127 ? "char" : "short",
                    "yytranslate", token_translations,
                    0, 1, max_user_token_number + 1);