From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: poffice@blade.nagaokaut.ac.jp Delivered-To: poffice@blade.nagaokaut.ac.jp Received: from kankan.nagaokaut.ac.jp (kankan.nagaokaut.ac.jp [133.44.2.24]) by blade.nagaokaut.ac.jp (Postfix) with ESMTP id AAFAC19E0027 for ; Fri, 18 Dec 2015 02:49:47 +0900 (JST) Received: from voscc.nagaokaut.ac.jp (voscc.nagaokaut.ac.jp [133.44.1.100]) by kankan.nagaokaut.ac.jp (Postfix) with ESMTP id 457E5B5D8BD for ; Fri, 18 Dec 2015 03:21:54 +0900 (JST) Received: from neon.ruby-lang.org (neon.ruby-lang.org [221.186.184.75]) by voscc.nagaokaut.ac.jp (Postfix) with ESMTP id 5051A18CC7CC for ; Fri, 18 Dec 2015 03:21:54 +0900 (JST) Received: from [221.186.184.76] (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id 52EE512049A; Fri, 18 Dec 2015 03:21:52 +0900 (JST) X-Original-To: ruby-core@ruby-lang.org Delivered-To: ruby-core@ruby-lang.org Received: from o2.heroku.sendgrid.net (o2.heroku.sendgrid.net [67.228.50.55]) by neon.ruby-lang.org (Postfix) with ESMTPS id BBCF812044A for ; Fri, 18 Dec 2015 03:21:48 +0900 (JST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sendgrid.me; h=from:to:references:subject:mime-version:content-type:content-transfer-encoding:list-id; s=smtpapi; bh=NEXf6ueZ9amb4OgAUUyu3JRoqec=; b=Aec2kPbQdghg64Fdv9 YIg+/79Y40AlhvNzGNiMV9DqB66SQ7DnIfBzJCD3I7HnLQtZRh3wn5lHZvIu5/IA 97K+G5rqrCKuKEvJVMX3Vyz8OlXPdPMSDFpnIphr2M1kmDst8KV9IjZroDwd6Ed2 FLVKCY4Rk+CCVkQRuIuyTB9IU= Received: by filter0920p1mdw1.sendgrid.net with SMTP id filter0920p1mdw1.2209.5672FD1F57 2015-12-17 18:21:19.800285041 +0000 UTC Received: from herokuapp.com (ec2-54-161-87-164.compute-1.amazonaws.com [54.161.87.164]) by ismtpd0002p1iad1.sendgrid.net (SG) with ESMTP id o5m2L9TAR_qRfdN95nRV_Q for ; Thu, 17 Dec 2015 18:21:19.756 +0000 (UTC) Date: Thu, 17 Dec 2015 18:21:19 +0000 From: nagachika00@gmail.com To: ruby-core@ruby-lang.org Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Redmine-MailingListIntegration-Message-Ids: 46933 X-Redmine-Project: ruby-trunk X-Redmine-Issue-Id: 11812 X-Redmine-Issue-Author: fcheung X-Redmine-Sender: nagachika X-Mailer: Redmine X-Redmine-Host: bugs.ruby-lang.org X-Redmine-Site: Ruby Issue Tracking System X-Auto-Response-Suppress: All Auto-Submitted: auto-generated X-SG-EID: ync6xU2WACa70kv/Ymy4QrNMhiuLXJG8OTL2vJD1yS5sR2L8oy/z5pNNmCJgUKyBJ9vwaqnGgI7Ltr 3w/u217Jy33J1vQv5+72ZFL2rvHFS2SrE9kvcPGyQXdw7BLqaoMg0O1dfM1fDvTwN8Wo16OomlZrXS N1ewXEdwGPGboyBwsN5Vkad0DvxmblpGSN+F4YT6AkugJD8F4KYyQkv1VA== X-SendGrid-Contentd-ID: {"test_id":"1450376484"} X-ML-Name: ruby-core X-Mail-Count: 72222 Subject: [ruby-core:72222] [Ruby trunk - Bug #11812] Lack of space between colon and % literal causes syntax error X-BeenThere: ruby-core@ruby-lang.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Ruby developers List-Id: Ruby developers List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: ruby-core-bounces@ruby-lang.org Sender: "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/