ascii: Fix closing pipe files in ascii_destroy().
authorBen Pfaff <blp@gnu.org>
Tue, 19 Jan 2010 06:10:30 +0000 (22:10 -0800)
committerBen Pfaff <blp@gnu.org>
Tue, 19 Jan 2010 06:10:30 +0000 (22:10 -0800)
commitc53e5d60298cba39cad94ad6daa14e6038a6762c
tree86c2f44d58cf6f6b35bb1854ceff60e32f5cec56
parentc9c6d86621b611f04b9132400ead11681fb9df2b
ascii: Fix closing pipe files in ascii_destroy().

Files that are opened with fn_open() must be closed with fn_close(), but
ascii_destroy() wasn't doing that.  This made a particular difference for
interactive output where fn_close() calls pclose() instead of fclose().
src/output/ascii.c