| Syntax 
   close stream-name indexer? (and stream-name indexer?)*
 
 Purpose
 
 The closeaction explicitly closes a stream. Once a stream that is attached to a file, buffer, referent, markup parser, or external output function has been closed, the same stream name can be used to open another attachment. Streams don't normally need to be closed because:
 they are closed automatically when the scope of the stream variable ends, and
they are closed automatically if another openis performed on the stream variable.
 Several streams can be closed at once. 
 It is an error to close a stream that is part of any #current-outputfor any currently open rule or function. The following syntactic variations are permitted:
 "&" can be used in place of the keyword and.The list of stream names can be placed in parentheses to improve readability. 
 |