small gotcha when running on 1.9: change parser.rb:832 from: ``` cnt1st = work[0] # 1st byte of Continue may be a GR byte ``` to ``` cnt1st = work[0].ord # 1st byte of Continue may be a GR byte ```