diff options
author | dawes <dawes> | 2000-08-16 18:29:05 +0000 |
---|---|---|
committer | dawes <dawes> | 2000-08-16 18:29:05 +0000 |
commit | 5b15089bc92ecdba7f61d0b37d9c474cc0e7b7ba (patch) | |
tree | 851e5741e4c39f74675b2e97f11907a6a354d454 /xc/extras/rman | |
parent | 8190ed5955328a27e02449af1beda41f0542cbd9 (diff) |
first part of 4.0.1b merge
Diffstat (limited to 'xc/extras/rman')
-rw-r--r-- | xc/extras/rman/rman.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xc/extras/rman/rman.c b/xc/extras/rman/rman.c index 1e20cc254..b82f43872 100644 --- a/xc/extras/rman/rman.c +++ b/xc/extras/rman/rman.c @@ -16,7 +16,7 @@ static char rcsid[] = "Header: /home/cs/phelps/spine/rman/RCS/rman.c,v 1.144 199 source interpretation added September 24, 1996 renamed PolyglotMan due to lawsuit by Rosetta, Inc. August 8, 1997 */ -/* $XFree86: xc/extras/rman/rman.c,v 1.9 2000/06/13 23:15:47 dawes Exp $ */ +/* $XFree86: xc/extras/rman/rman.c,v 1.11 2000/08/09 23:40:11 dawes Exp $ */ /* TO DO **** @@ -58,6 +58,9 @@ static char rcsid[] = "Header: /home/cs/phelps/spine/rman/RCS/rman.c,v 1.144 199 extern int optind; extern char *optarg; #endif +#ifdef __CYGWIN__ +#include <getopt.h> +#endif /*** make #define's into consts? => can't because compilers not smart enough ***/ /* maximum number of tags per line */ @@ -1606,7 +1609,7 @@ HTML(enum command cmd) case BEGINCOMMENT: printf("\n<!--\n"); break; case ENDCOMMENT: printf("\n-->\n"); break; - case COMMENTLINE: break; + case COMMENTLINE: printf(" "); break; case BEGINSECTHEAD: printf("\n<H2><A NAME=\"sect%d\" HREF=\"#toc%d\">", tocc, tocc); |