X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/297e263a0050959e0fd139ad66e71383fc9ac4db..7d6bad195977b0204fc8406cac57cf5a4f1c769b:/src/nullable.c?ds=sidebyside diff --git a/src/nullable.c b/src/nullable.c index 8fe44954..a150f5f5 100644 --- a/src/nullable.c +++ b/src/nullable.c @@ -1,6 +1,6 @@ /* Calculate which nonterminals can expand into the null string for Bison. - Copyright (C) 1984, 1989, 2000-2006, 2009-2012 Free Software + Copyright (C) 1984, 1989, 2000-2006, 2009-2013 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -47,7 +47,7 @@ nullable_print (FILE *out) int i; fputs ("NULLABLE\n", out); for (i = ntokens; i < nsyms; i++) - fprintf (out, "\t%s: %s\n", symbols[i]->tag, + fprintf (out, " %s: %s\n", symbols[i]->tag, nullable[i - ntokens] ? "yes" : "no"); fputs ("\n\n", out); }