Re: [AD] Allegro 4.2.0 RC2 |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
On 2005-08-28, Peter Hull <peter.hull90@xxxxxxxxxx> wrote:
> By the way, does makedoc have to be so verbose? It gives out
> pages of output listing each and every file it's read or processed.
Do you like this?
Index: docs/src/makedoc/makedoc.c
===================================================================
RCS file: /cvsroot/alleg/allegro/docs/src/makedoc/makedoc.c,v
retrieving revision 1.24
diff -u -p -r1.24 makedoc.c
--- docs/src/makedoc/makedoc.c 3 Apr 2005 19:03:12 -0000 1.24
+++ docs/src/makedoc/makedoc.c 30 Aug 2005 11:25:57 -0000
@@ -315,7 +315,7 @@ static int _read_file(char *filename)
FILE *f;
int line = 0;
- printf("reading %s\n", filename);
+ /*printf("reading %s\n", filename);*/
f = fopen(filename, "r");
if (!f)
Index: docs/src/makedoc/makehtml.c
===================================================================
RCS file: /cvsroot/alleg/allegro/docs/src/makedoc/makehtml.c,v
retrieving revision 1.38
diff -u -p -r1.38 makehtml.c
--- docs/src/makedoc/makehtml.c 26 Mar 2005 12:25:48 -0000 1.38
+++ docs/src/makedoc/makehtml.c 30 Aug 2005 11:25:57 -0000
@@ -254,7 +254,7 @@ int write_html(char *filename)
if (!html_return_value_text)
html_return_value_text = m_strdup("Return value:");
- printf("writing %s\n", filename);
+ /*printf("writing %s\n", filename);*/
_file = fopen(filename, "w");
if (!_file)
@@ -853,7 +853,7 @@ static int _output_section_heading(LINE
if (s - get_filename(buf) > 5)
s = get_filename(buf)+5;
sprintf(s, "%03d.%s", section_number-1, html_extension);
- printf("writing %s\n", buf);
+ /*printf("writing %s\n", buf);*/
_file = fopen(buf, "w");
if (!_file)
return 1;
@@ -1156,7 +1156,7 @@ static void _post_process_filename(char
f2 = fopen(new_filename, "wt");
if (!f1 || !f2) goto cancel;
- printf("post processing %s\n", filename);
+ /*printf("post processing %s\n", filename);*/
code_scanning = 0;
Index: docs/src/makedoc/makeman.c
===================================================================
RCS file: /cvsroot/alleg/allegro/docs/src/makedoc/makeman.c,v
retrieving revision 1.5
diff -u -p -r1.5 makeman.c
--- docs/src/makedoc/makeman.c 17 Feb 2005 09:00:18 -0000 1.5
+++ docs/src/makedoc/makeman.c 30 Aug 2005 11:25:57 -0000
@@ -102,7 +102,7 @@ int write_man(char *filename)
strcat(buf, ".");
strcat(buf, get_extension(filename));
- printf("writing %s\n", buf);
+ /*printf("writing %s\n", buf);*/
f = fopen(buf, "w");
if (!f)
return 1;
@@ -167,7 +167,7 @@ int write_man(char *filename)
strcat(buf2, ".");
strcat(buf2, get_extension(filename));
- printf("writing %s\n", buf2);
+ /*printf("writing %s\n", buf2);*/
f2 = fopen(buf2, "w");
if (!f2)
return 1;
Index: docs/src/makedoc/makertf.c
===================================================================
RCS file: /cvsroot/alleg/allegro/docs/src/makedoc/makertf.c,v
retrieving revision 1.3
diff -u -p -r1.3 makertf.c
--- docs/src/makedoc/makertf.c 28 Mar 2005 13:31:29 -0000 1.3
+++ docs/src/makedoc/makertf.c 30 Aug 2005 11:25:57 -0000
@@ -66,7 +66,7 @@ int write_rtf(char *filename)
} \
}
- printf("writing %s\n", filename);
+ /*printf("writing %s\n", filename);*/
f = fopen(filename, "w");
if (!f)
Index: docs/src/makedoc/makesci.c
===================================================================
RCS file: /cvsroot/alleg/allegro/docs/src/makedoc/makesci.c,v
retrieving revision 1.6
diff -u -p -r1.6 makesci.c
--- docs/src/makedoc/makesci.c 17 Jul 2005 14:37:12 -0000 1.6
+++ docs/src/makedoc/makesci.c 30 Aug 2005 11:25:57 -0000
@@ -177,6 +177,6 @@ static int _convert(const char *filename
*/
int write_scite(char *filename, char *src)
{
- printf("Writing %s (SciTE API File)\n", filename);
+ /*printf("Writing %s (SciTE API File)\n", filename);*/
return _convert(src, filename);
}
Index: docs/src/makedoc/maketexi.c
===================================================================
RCS file: /cvsroot/alleg/allegro/docs/src/makedoc/maketexi.c,v
retrieving revision 1.12
diff -u -p -r1.12 maketexi.c
--- docs/src/makedoc/maketexi.c 22 Sep 2004 21:18:03 -0000 1.12
+++ docs/src/makedoc/maketexi.c 30 Aug 2005 11:25:57 -0000
@@ -72,7 +72,7 @@ int write_texinfo(char *filename)
char up_target[256] = "Top";
FILE *f;
- printf("writing %s\n", filename);
+ /*printf("writing %s\n", filename);*/
f = fopen(filename, "w");
if (!f)
Index: docs/src/makedoc/maketxt.c
===================================================================
RCS file: /cvsroot/alleg/allegro/docs/src/makedoc/maketxt.c,v
retrieving revision 1.2
diff -u -p -r1.2 maketxt.c
--- docs/src/makedoc/maketxt.c 30 Aug 2004 20:46:44 -0000 1.2
+++ docs/src/makedoc/maketxt.c 30 Aug 2005 11:25:57 -0000
@@ -37,7 +37,7 @@ int write_txt(char *filename, int partia
FILE *f;
int outputting = !partial;
- printf("writing %s\n", filename);
+ /*printf("writing %s\n", filename);*/
f = fopen(filename, "w");
if (!f)