Aardvark 735-737 Accepted (As Marked)
Aug. 30th, 2013 08:06 amWhat's your status?
Issue 735 Resolved and Accepted.
Issue 736 Needs an Interpretation and Accepted as Marked by Don Cragun:
Issue 737 Resolved and Accepted.
Issue 735 Resolved and Accepted.
Issue 736 Needs an Interpretation and Accepted as Marked by Don Cragun:
Interpretation response
------------------------
The standard is unclear on this issue, and no conformance
distinction can be made between alternative implementations
based on this. This is being referred to the sponsor.
Rationale:
-------------
The following changes make the grammar and text reflect existing
practice.
Notes to the Editor (not part of this interpretation):
-------------------------------------------------------
On page 2350, lines 74801-74808, change
%start complete_command
%%
complete_command : list separator
| list
;
to:
%start program
%%
program : linebreak complete_commands linebreak
| linebreak
;
complete_commands: complete_commands newline_list complete_command
| complete_command
;
complete_command : list separator_op
| list
;
Cross-volume change to XRAT...
At page 3700 line 126612 section C.2.10 delete:
The start symbol of the grammar (complete_command) represents
either input from the command line or a shell script. It is
repeatedly applied by the interpreter to its input and represents
a single "chunk" of that input as seen by the interpreter.Issue 737 Resolved and Accepted.