Modified to use .txt instead of .doc
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@56 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
09c209ab48
commit
893d3035be
1 changed files with 2 additions and 2 deletions
|
|
@ -308,7 +308,7 @@ void ASCII::separator() {
|
||||||
void ASCII::init(char *filename) {
|
void ASCII::init(char *filename) {
|
||||||
char f[256];
|
char f[256];
|
||||||
|
|
||||||
sprintf(f,"%s.doc",filename);
|
sprintf(f,"%s.txt",filename);
|
||||||
sprintf(fn,"%s",filename);
|
sprintf(fn,"%s",filename);
|
||||||
f_doc = fopen(f,"w");
|
f_doc = fopen(f,"w");
|
||||||
if (f_doc == NULL) {
|
if (f_doc == NULL) {
|
||||||
|
|
@ -328,7 +328,7 @@ void ASCII::close(void) {
|
||||||
|
|
||||||
fclose(f_doc);
|
fclose(f_doc);
|
||||||
if (Verbose)
|
if (Verbose)
|
||||||
fprintf(stderr,"Documentation written to %s.doc\n", fn);
|
fprintf(stderr,"Documentation written to %s.txt\n", fn);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue