home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 45
/
Amiga_Dream_45.iso
/
Amiga
/
Magazine
/
Dossier-LaTeX
/
AmiWeb2C.lha
/
source
/
web2c-6.1
/
web2c
/
bibtex
/
bibtex.chch
next >
Wrap
Text File
|
1995-03-26
|
1KB
|
49 lines
Changes for BIBTEX.CH by Andreas Scherer, February 25, 1995.
And what do you `return' when `history==0'?
@x l.99
if (history > 1) then uexit (history);
@y
uexit (history);
@z
There is no logfile present yet when we issue this message!
@x l.466
print ('Usage: bibtex ');
print ('[-verbose] ');
print ('[-min-crossrefs=<number>] ');
print_ln ('[<aux file>].');
@y
write ('Usage: bibtex ');
write ('[-verbose] ');
write ('[-min-crossrefs=<number>] ');
write_ln ('[<aux file>].');
@z
And the `usage' message is not issued when the user calls `-?'.
@x l.668
if getopt_return_val = "?"
then uexit (1); {|getopt| has already given an error message.}
@y
if getopt_return_val = "?" then
begin
write ('Usage: bibtex ');
write ('[-verbose] ');
write ('[-min-crossrefs=<number>] ');
write_ln ('[<aux file>].');
@.Usage: ...@>
uexit (1); {|getopt| has already given an error message.}
end;
@z
I think it's nicer when BibTeX is a bit more `verbose'. :-)
@x l.717
verbose := false;
@y
verbose := true;
@z