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 1C7FC19E005C for ; Fri, 18 Dec 2015 13:19:51 +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 281FEB5D871 for ; Fri, 18 Dec 2015 13:51:58 +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 9BF7F18CC7CC for ; Fri, 18 Dec 2015 13:51:58 +0900 (JST) Received: from [221.186.184.76] (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id ED406120689; Fri, 18 Dec 2015 13:51:56 +0900 (JST) X-Original-To: ruby-core@ruby-lang.org Delivered-To: ruby-core@ruby-lang.org Received: from o10.shared.sendgrid.net (o10.shared.sendgrid.net [173.193.132.135]) by neon.ruby-lang.org (Postfix) with ESMTPS id 807CA1205B2 for ; Fri, 18 Dec 2015 13:51:53 +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=s4rBBdEqwU9sE9VZsMR4Uicx1Cw=; b=UvFzCZ51E2q9G0Q5tP CszBt5JYmFCL02mS3K0xJvs2SV2GOgA2qv9dUora5NKtgGRq1D6r1AIHFeOW7LIu 49eoX2yw686Jldz16fwoXZCNvDBT/gnTotD7X2v0bIPKZ60C5TbbfTJQvdj+jsQi 3svSi9wkFEtHba5TYHWmiGQIY= Received: by filter0449p1mdw1.sendgrid.net with SMTP id filter0449p1mdw1.24644.567390E61E 2015-12-18 04:51:50.301302599 +0000 UTC Received: from herokuapp.com (ec2-54-159-2-169.compute-1.amazonaws.com [54.159.2.169]) by ismtpd0001p1iad1.sendgrid.net (SG) with ESMTP id T7VTdZccRhe34CoVBnBI-Q for ; Fri, 18 Dec 2015 04:51:50.081 +0000 (UTC) Date: Fri, 18 Dec 2015 04:51:50 +0000 From: usa@garbagecollect.jp 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: 46950 X-Redmine-Project: ruby-trunk X-Redmine-Issue-Id: 11812 X-Redmine-Issue-Author: fcheung X-Redmine-Sender: usa 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/Ymy4QrNMhiuLXJG8OTL2vJD1yS457xrNoQXnofHntLjBsvOUepV9jIRdYIGrbI NfAxEAjwW2wbKjZ0w5Nvp8wghIU4mJFallwbm8+Rvvu9mIl2KXxNU2/SJHeATVm4u/i63zRHhoOlpR aZxxrxwAV7sECJw9OPk5otbqVicmLyUjxi7xpRQH4LGk21Ul0x8eSHsQ3w== X-ML-Name: ruby-core X-Mail-Count: 72355 Subject: [ruby-core:72355] [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 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/