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 >
Text File  |  1995-03-26  |  1KB  |  49 lines

  1. Changes for BIBTEX.CH by Andreas Scherer, February 25, 1995.
  2.  
  3. And what do you `return' when `history==0'?
  4.  
  5. @x l.99
  6. if (history > 1) then uexit (history);
  7. @y
  8. uexit (history);
  9. @z
  10.  
  11. There is no logfile present yet when we issue this message!
  12.  
  13. @x l.466
  14.     print ('Usage: bibtex ');
  15.     print ('[-verbose] ');
  16.     print ('[-min-crossrefs=<number>] ');
  17.     print_ln ('[<aux file>].');
  18. @y
  19.     write ('Usage: bibtex ');
  20.     write ('[-verbose] ');
  21.     write ('[-min-crossrefs=<number>] ');
  22.     write_ln ('[<aux file>].');
  23. @z
  24.  
  25. And the `usage' message is not issued when the user calls `-?'.
  26.  
  27. @x l.668
  28.       if getopt_return_val = "?"
  29.       then uexit (1); {|getopt| has already given an error message.}
  30. @y
  31.       if getopt_return_val = "?" then
  32.       begin
  33.         write ('Usage: bibtex ');
  34.         write ('[-verbose] ');
  35.         write ('[-min-crossrefs=<number>] ');
  36.         write_ln ('[<aux file>].');
  37. @.Usage: ...@>
  38.         uexit (1); {|getopt| has already given an error message.}
  39.       end;
  40. @z
  41.  
  42. I think it's nicer when BibTeX is a bit more `verbose'. :-)
  43.  
  44. @x l.717
  45. verbose := false;
  46. @y
  47. verbose := true;
  48. @z
  49.