------------------------------------------------------------------------------ CHANGES since adoc-0.17 beta 3 (the first release) ------------------------------------------------------------------------------ Tue Mar 21 22:13:37 1995 * Autodoc default was `--preserve-order' and there was no switch to sort the entries. ADOC now sorts the entries by default as documented. Wed Mar 22 14:32:27 1995 * Removed the undocumented "hidden feature" which allowed combining `-1 -o file' to `-o1 file'. * `--revision' replaces `--edition' and `--edition' now does what it says: it defines the REVISION macro. * `-h' option qualifier added to avoid line breaks on 80 column terminals: `-h0' prints only the "usage:" string `-h1' prints only the "short" options (those with one `-') `-h2' printd only the "long" options (those with two `--') `-h' alone defaults to `-h3' which prints both "long" and "short" options" Thu Mar 23 12:58:38 1995 * Added the `-Y' option which allows autodoc comments to begin in any column. (They normally have to begin in column 1). There is no checking yet whether or not the indentation is equal in every line of the comment. (Do we really need that?) * There is only one warning now for lines in autodoc comments without a white space after the first column black character. These lines are ignored. * A (char *)0 reference has been fixed which happened in case of an unterminated comment at the end of a file. * Added `-u' option which allows the removal of the body text indentation. This is useful in texinfo mode because the texinfo @example block is indented automatically. Warning: This option removes *all* white spaces at the beginning of a line and that might destroy your textual layout. This is why this option is not documented and might be removed in future revisions. Fri Mar 24 13:24:46 1995 * Added `-j' option which might be what you need instead of `-u'. (-: * Adoc now replaces the the leading "black" character of body text lines with a single space if the black character is followed by a space. Otherwise (if it is followed by a TAB or a NL) adoc only removes the back character. This guarantees an equal indentation of body text lines indented with tabs and those indented with spaces. (This was a bug until today) ------------------------------------------------------------------------------ CHANGES since adoc-0.18 ------------------------------------------------------------------------------ Fri Mar 24 20:40:49 1995 * Made the period `.' a legal character for an identifier in the comment header. This allows headers of the form /****** myfirst.library/greatfun *******... * Wrote the CODA tool which is now distributed together with adoc CODA converts autodocs to C language comments which allows further processing with ADOC * Found another DICE bug which caused crashes on my system :'( z=((++x) % y) is not equal to x++; z= x%y Sat Mar 25 10:55:21 1995 * ADOC now adds an untitled section if there is text without a section heading at the beginning of an autodoc comment. * added the `-Z' option which avoids writing the "Function Index" in `--texinfo' mode. *