mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
592 B

21 years ago
  1. The white space between ']' and ']' is necessary or else flex will discard
  2. all closing braces and brackets of the corresponding line in docify.cc.
  3. Patch required with flex version 2.5.31, not required with 2.5.4a.
  4. --- doc++-3.4.10/src/docify.ll 2001-03-08 08:36:20.000000000 +0000
  5. +++ doc++-3.4.10-patched/src/docify.ll 2004-01-13 22:12:27.000000000 +0000
  6. @@ -314,7 +314,7 @@
  7. {
  8. if(argv[1][0] == '-')
  9. {
  10. - fprintf(stderr, "Usage: docify [infile [outfile]]\n");
  11. + fprintf(stderr, "Usage: docify [ infile [ outfile ] ]\n");
  12. return 0;
  13. }
  14. ain = fopen(argv[1], "r");