From 893d3035be8db31484f31ae8142cfdebdf2acba6 Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Wed, 12 Jan 2000 04:49:25 +0000 Subject: [PATCH] Modified to use .txt instead of .doc git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@56 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Source/SWIG1.1/ascii.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SWIG/Source/SWIG1.1/ascii.cxx b/SWIG/Source/SWIG1.1/ascii.cxx index 79c898c83..fa8c60f27 100644 --- a/SWIG/Source/SWIG1.1/ascii.cxx +++ b/SWIG/Source/SWIG1.1/ascii.cxx @@ -308,7 +308,7 @@ void ASCII::separator() { void ASCII::init(char *filename) { char f[256]; - sprintf(f,"%s.doc",filename); + sprintf(f,"%s.txt",filename); sprintf(fn,"%s",filename); f_doc = fopen(f,"w"); if (f_doc == NULL) { @@ -328,7 +328,7 @@ void ASCII::close(void) { fclose(f_doc); if (Verbose) - fprintf(stderr,"Documentation written to %s.doc\n", fn); + fprintf(stderr,"Documentation written to %s.txt\n", fn); }