[#107867] Fwd: [ruby-cvs:91197] 8f59482f5d (master): add some tests for Unicode Version 14.0.0 — Martin J. Dürst <duerst@...>
To everybody taking care of continuous integration:
3 messages
2022/03/13
[#108090] [Ruby master Bug#18666] No rule to make target 'yaml/yaml.h', needed by 'api.o' — duerst <noreply@...>
Issue #18666 has been reported by duerst (Martin D端rst).
7 messages
2022/03/28
[#108117] [Ruby master Feature#18668] Merge `io-nonblock` gems into core — "Eregon (Benoit Daloze)" <noreply@...>
Issue #18668 has been reported by Eregon (Benoit Daloze).
22 messages
2022/03/30
[ruby-core:108047] [Ruby master Bug#14103] Regexp absense operator has no chance to ^C
From:
"mame (Yusuke Endoh)" <noreply@...>
Date:
2022-03-24 00:48:02 UTC
List:
ruby-core #108047
Issue #14103 has been updated by mame (Yusuke Endoh).
Status changed from Open to Closed
Fixed at 9112cf4ae7f7ea8ab33c282aa02eec812421aeab.
----------------------------------------
Bug #14103: Regexp absense operator has no chance to ^C
https://bugs.ruby-lang.org/issues/14103#change-97009
* Author: shyouhei (Shyouhei Urabe)
* Status: Closed
* Priority: Normal
* ruby -v: ruby 2.5.0dev (2017-11-09 trunk 60720) [x86_64-darwin15]
* Backport: 2.3: UNKNOWN, 2.4: UNKNOWN
----------------------------------------
Following script hangs, with no respond to `^C`.
```ruby
/(?<x> (?<! a ) a+ ){0}
(?<y> (?~ \g<z> ) ){0}
(?<z> (?<! a ) \k<x> (?! a ) ){0}
\g<x> \g<y> \g<z>
/xo =~ (1..1024).map{|x| 'b' + 'a' * x }.join
```
--
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>