new field in username for editors, texi2db bugfixes

This commit is contained in:
david 2002-02-15 06:51:11 +00:00
parent 127e4ba99a
commit a9b9b758c1
2 changed files with 4 additions and 3 deletions

View File

@ -7,6 +7,7 @@ CREATE TABLE username (
maintainer_id INT4,
email TEXT,
admin BOOLEAN,
editor_id INT4,
PRIMARY KEY (username)
);

View File

@ -1488,7 +1488,7 @@ sub version {
print "\n";
print "Converts a Texinfo file into DocBook.\n";
print "\n";
print "This free software; see the source for copying conditions. There is no\n";
print "This is free software; see the source for copying conditions. There is no\n";
print "warranty; not even for merchantability or fitness for a particular purpose.\n";
}
@ -1506,8 +1506,8 @@ sub usage {
print " use thrice for insane amounts of detail.\n";
print "-e, --max-errors MAX show diagnostic output.\n";
print " use '--max-errors 0' to disable.\n";
print "-h, --help show this usage message.\n";
print " --version show the program version.\n";
print "-h, --help show this usage message and exit.\n";
print " --version show the program version and exit.\n";
exit($error);
}