Project

General

Profile

Actions

Bug #7610

closed

Incompatible with percent literal regexp between 1.9.3 and 2.0.0

Added by sanemat (Kenichi Murahashi) over 11 years ago. Updated over 11 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.0.0dev (2012-12-23 trunk 38571) [x86_64-darwin11.4.2]
Backport:
[ruby-core:51088]

Description

=begin
Percent literal regexp brings SyntaxError with parenthesis. If I use | as separator, then it works fine, but I use () as separator, then it does not work.

$ ruby -v
ruby 2.0.0dev (2012-12-23 trunk 38571) [x86_64-darwin11.4.2]
$ irb
irb(main):001:0> %r((555)555-5555)
SyntaxError: (irb):1: unmatched close parenthesis: /(555)555-5555</telephoneNumber>/
from /Users/sane/.rbenv/versions/2.0.0-dev/bin/irb:12:in `'
irb(main):003:0> %r|(555)555-5555|
=> /(555)555-5555</telephoneNumber>/

$ ruby -v
ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-darwin11.4.2]
$ irb
irb(main):001:0> %r((555)555-5555)
=> /(555)555-5555</telephoneNumber>/
irb(main):002:0> %r|(555)555-5555|
=> /(555)555-5555</telephoneNumber>/
=end


Related issues 1 (0 open1 closed)

Related to Ruby master - Bug #8133: Regexp macro %r{} is loosing backslash on "\}"Closed03/21/2013Actions

Updated by sanemat (Kenichi Murahashi) over 11 years ago

Percent literal regexp brings SyntaxError with parenthesis. If I use | as separator, then it works fine, but I use () as separator, then it does not work.

$ ruby -v
ruby 2.0.0dev (2012-12-23 trunk 38571) [x86_64-darwin11.4.2]
$ irb
irb(main):001:0> %r((555)555-5555)
SyntaxError: (irb):1: unmatched close parenthesis: /(555)555-5555</telephoneNumber>/
from /Users/sane/.rbenv/versions/2.0.0-dev/bin/irb:12:in `'
irb(main):003:0> %r|(555)555-5555|
=> /(555)555-5555</telephoneNumber>/

$ ruby -v
ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-darwin11.4.2]
$ irb
irb(main):001:0> %r((555)555-5555)
=> /(555)555-5555</telephoneNumber>/
irb(main):002:0> %r|(555)555-5555|
=> /(555)555-5555</telephoneNumber>/

Actions #2

Updated by nobu (Nobuyoshi Nakada) over 11 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

This issue was solved with changeset r38663.
Kenichi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


parse.y: escaped closing parenthsis

Updated by nobu (Nobuyoshi Nakada) over 11 years ago

  • Description updated (diff)
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0