RE: Ticket 162, was: Ambiguity in ABNF for comment

Julian Reschke wrote:
> Proposed patch; change ctext to say:
> 
>        ctext          = *( OWS / %x21-27 / %x2A-5B / %x5D-7E / obs-
> text )

It makes perfect sense, once one realizes that x28, x29, and x5C are "(",
")", and "\" respectively. 

Nitpick: The Kleene star is unnecessary and inconsistent with obs-text. This
is enough:

    ctext = OWS / %x21-27 / %x2A-5B / %x5D-7E / obs-text

- Brian

Received on Saturday, 2 May 2009 01:13:00 UTC