ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:72084] [Ruby trunk - Bug #11812] [Open] Lack of space between colon and % literal causes syntax error
       [not found] <redmine.issue-11812.20151212182420@ruby-lang.org>
@ 2015-12-12 18:24 ` frederick.cheung
  2015-12-13  8:46 ` [ruby-core:72095] [Ruby trunk - Bug #11812] " yugui
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: frederick.cheung @ 2015-12-12 18:24 UTC (permalink / raw)
  To: ruby-core

Issue #11812 has been reported by Frederick Cheung.

----------------------------------------
Bug #11812: Lack of space between colon and % literal causes syntax error
https://bugs.ruby-lang.org/issues/11812

* Author: Frederick Cheung
* Status: Open
* Priority: Normal
* Assignee: 
* ruby -v: ruby 2.3.0preview2 (2015-12-11 trunk 53028) [x86_64-darwin15]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
The following snippet 

~~~
{tags:%w(a)}
~~~

executes fine in ruby 2.2.3, but raises "syntax error, unexpected '%" when run under ruby 2.3.0preview2. When it is changed to

~~~
{tags: %w(a)}
~~~

Then it parses with ruby 2.3.0preview2 too.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-core:72095] [Ruby trunk - Bug #11812] Lack of space between colon and % literal causes syntax error
       [not found] <redmine.issue-11812.20151212182420@ruby-lang.org>
  2015-12-12 18:24 ` [ruby-core:72084] [Ruby trunk - Bug #11812] [Open] Lack of space between colon and % literal causes syntax error frederick.cheung
@ 2015-12-13  8:46 ` yugui
  2015-12-17 18:21 ` [ruby-core:72222] " nagachika00
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: yugui @ 2015-12-13  8:46 UTC (permalink / raw)
  To: ruby-core

Issue #11812 has been updated by Yuki Sonoda.


r51617 is the cause according to bisect.

----------------------------------------
Bug #11812: Lack of space between colon and % literal causes syntax error
https://bugs.ruby-lang.org/issues/11812#change-55511

* Author: Frederick Cheung
* Status: Open
* Priority: Normal
* Assignee: 
* ruby -v: ruby 2.3.0preview2 (2015-12-11 trunk 53028) [x86_64-darwin15]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
The following snippet 

~~~
{tags:%w(a)}
~~~

executes fine in ruby 2.2.3, but raises "syntax error, unexpected '%" when run under ruby 2.3.0preview2. When it is changed to

~~~
{tags: %w(a)}
~~~

Then it parses with ruby 2.3.0preview2 too.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-core:72222] [Ruby trunk - Bug #11812] Lack of space between colon and % literal causes syntax error
       [not found] <redmine.issue-11812.20151212182420@ruby-lang.org>
  2015-12-12 18:24 ` [ruby-core:72084] [Ruby trunk - Bug #11812] [Open] Lack of space between colon and % literal causes syntax error frederick.cheung
  2015-12-13  8:46 ` [ruby-core:72095] [Ruby trunk - Bug #11812] " yugui
@ 2015-12-17 18:21 ` nagachika00
  2015-12-18  4:51 ` [ruby-core:72355] " usa
  2015-12-22 20:59 ` [ruby-core:72441] " nagachika00
  4 siblings, 0 replies; 5+ messages in thread
From: nagachika00 @ 2015-12-17 18:21 UTC (permalink / raw)
  To: ruby-core

Issue #11812 has been updated by Tomoyuki Chikanaga.

Backport changed from 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN to 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: REQUIRED

----------------------------------------
Bug #11812: Lack of space between colon and % literal causes syntax error
https://bugs.ruby-lang.org/issues/11812#change-55632

* Author: Frederick Cheung
* Status: Closed
* Priority: Normal
* Assignee: 
* ruby -v: ruby 2.3.0preview2 (2015-12-11 trunk 53028) [x86_64-darwin15]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: REQUIRED
----------------------------------------
The following snippet 

~~~
{tags:%w(a)}
~~~

executes fine in ruby 2.2.3, but raises "syntax error, unexpected '%" when run under ruby 2.3.0preview2. When it is changed to

~~~
{tags: %w(a)}
~~~

Then it parses with ruby 2.3.0preview2 too.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-core:72355] [Ruby trunk - Bug #11812] Lack of space between colon and % literal causes syntax error
       [not found] <redmine.issue-11812.20151212182420@ruby-lang.org>
                   ` (2 preceding siblings ...)
  2015-12-17 18:21 ` [ruby-core:72222] " nagachika00
@ 2015-12-18  4:51 ` usa
  2015-12-22 20:59 ` [ruby-core:72441] " nagachika00
  4 siblings, 0 replies; 5+ messages in thread
From: usa @ 2015-12-18  4:51 UTC (permalink / raw)
  To: ruby-core

Issue #11812 has been updated by Usaku NAKAMURA.

Backport changed from 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: REQUIRED to 2.1: DONTNEED, 2.2: REQUIRED

----------------------------------------
Bug #11812: Lack of space between colon and % literal causes syntax error
https://bugs.ruby-lang.org/issues/11812#change-55648

* Author: Frederick Cheung
* Status: Closed
* Priority: Normal
* Assignee: 
* ruby -v: ruby 2.3.0preview2 (2015-12-11 trunk 53028) [x86_64-darwin15]
* Backport: 2.1: DONTNEED, 2.2: REQUIRED
----------------------------------------
The following snippet 

~~~
{tags:%w(a)}
~~~

executes fine in ruby 2.2.3, but raises "syntax error, unexpected '%" when run under ruby 2.3.0preview2. When it is changed to

~~~
{tags: %w(a)}
~~~

Then it parses with ruby 2.3.0preview2 too.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-core:72441] [Ruby trunk - Bug #11812] Lack of space between colon and % literal causes syntax error
       [not found] <redmine.issue-11812.20151212182420@ruby-lang.org>
                   ` (3 preceding siblings ...)
  2015-12-18  4:51 ` [ruby-core:72355] " usa
@ 2015-12-22 20:59 ` nagachika00
  4 siblings, 0 replies; 5+ messages in thread
From: nagachika00 @ 2015-12-22 20:59 UTC (permalink / raw)
  To: ruby-core

Issue #11812 has been updated by Tomoyuki Chikanaga.

Backport changed from 2.1: DONTNEED, 2.2: REQUIRED to 2.1: DONTNEED, 2.2: DONE

Backported into `ruby_2_2` branch at r53257.

----------------------------------------
Bug #11812: Lack of space between colon and % literal causes syntax error
https://bugs.ruby-lang.org/issues/11812#change-55736

* Author: Frederick Cheung
* Status: Closed
* Priority: Normal
* Assignee: 
* ruby -v: ruby 2.3.0preview2 (2015-12-11 trunk 53028) [x86_64-darwin15]
* Backport: 2.1: DONTNEED, 2.2: DONE
----------------------------------------
The following snippet 

~~~
{tags:%w(a)}
~~~

executes fine in ruby 2.2.3, but raises "syntax error, unexpected '%" when run under ruby 2.3.0preview2. When it is changed to

~~~
{tags: %w(a)}
~~~

Then it parses with ruby 2.3.0preview2 too.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-12-22 20:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <redmine.issue-11812.20151212182420@ruby-lang.org>
2015-12-12 18:24 ` [ruby-core:72084] [Ruby trunk - Bug #11812] [Open] Lack of space between colon and % literal causes syntax error frederick.cheung
2015-12-13  8:46 ` [ruby-core:72095] [Ruby trunk - Bug #11812] " yugui
2015-12-17 18:21 ` [ruby-core:72222] " nagachika00
2015-12-18  4:51 ` [ruby-core:72355] " usa
2015-12-22 20:59 ` [ruby-core:72441] " nagachika00

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).