[#85940] [Ruby trunk Bug#14578] Forking a child process inside of a mutex crashes the ruby interpreter — ben.govero@...
Issue #14578 has been reported by bengovero (Ben Govero).
3 messages
2018/03/05
[#86205] [Ruby trunk Feature#14618] Add display width method to String for CLI — aycabta@...
Issue #14618 has been reported by aycabta (aycabta .).
3 messages
2018/03/19
[#86366] Re: [ruby-cvs:70102] usa:r63008 (trunk): get rid of test error/failure on Windows introduced at r62955 — Eric Wong <normalperson@...>
usa@ruby-lang.org wrote:
3 messages
2018/03/28
[ruby-core:86292] [Ruby trunk Feature#4513][Closed] allow whitespace following EOL continuation backslash
From:
nobu@...
Date:
2018-03-25 13:11:11 UTC
List:
ruby-core #86292
Issue #4513 has been updated by nobu (Nobuyoshi Nakada). Status changed from Feedback to Closed Now: ``` $ ruby -e ' \ ' -e:1: syntax error, unexpected escaped space ``` Close this for now. ---------------------------------------- Feature #4513: allow whitespace following EOL continuation backslash https://bugs.ruby-lang.org/issues/4513#change-71208 * Author: Rich_Morin (Rich Morin) * Status: Closed * Priority: Normal * Assignee: nobu (Nobuyoshi Nakada) * Target version: ---------------------------------------- In a few programming languages, the displayed or printed program can hide critical syntactic and/or semantic information. For example, in make(1) and Python, the difference between initial tabs and spaces can cause bugs that are not visually apparent. Ruby has a minor instance of this problem, in that spaces or tabs between a backslash and the EOL will prevent the line from being continued: >> a \ ?> = 2 => 2 >> b \ SyntaxError: compile error (irb):3: syntax error, unexpected $undefined, expecting $end from (irb):3 Could Ruby open up its syntax to allow any number of intervening spaces or tabs before the EOL? -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>