* src/parse-gram.y (version_check): Exit 63 to please missing

(stands for "version mismatch).
* tests/input.at, doc/bison.texinfo: Adjust.
This commit is contained in:
Akim Demaille
2005-10-12 10:15:12 +00:00
parent 52d9d4112f
commit 9b8a5ce03b
6 changed files with 134 additions and 123 deletions

View File

@@ -539,8 +539,11 @@ static void
version_check (location const *loc, char const *version)
{
if (strverscmp (version, PACKAGE_VERSION) > 0)
complain_at (*loc, "require bison %s, but have %s",
version, PACKAGE_VERSION);
{
complain_at (*loc, "require bison %s, but have %s",
version, PACKAGE_VERSION);
exit (63);
}
}
static void