Activity
From 08/28/2011 to 09/03/2011
09/03/2011
-
11:52 PM Bug #5268 (Closed): [i386-mingw] `make test` failures with 1.9.3dev@33165
- This issue was solved with changeset r33171.
Jon, thank you for reporting this issue.
Your contribution to Ruby is gr... -
12:07 AM Bug #5268 (Closed): [i386-mingw] `make test` failures with 1.9.3dev@33165
- After building on Win7 32bit with a MinGW toolchain I get the following failures during `make test`:
sh-3.1$ gcc -... -
10:01 PM Bug #5193: ruby_thread_data_type linker errors fixed with RUBY_EXTERN
- Doesn't https://github.com/mark-moseley/ruby-debug/pull/14 work?
-
08:08 PM Bug #5258: SizedQueueにBug #5195と同様のバグ
- 別件の修正中にパッチを書いていたのですが、このチケットと同じ問題だと気がつきました。
#5195 のぶんも同じですがパッチを添付します。
wakeup や例外で抜けた時に @waiting に残ってしまうと次の Queue#pus... -
06:46 PM Bug #5259 (Closed): SizedQueue#max=で正でない数を指定できてしまう
- This issue was solved with changeset r33170.
Masaki, thank you for reporting this issue.
Your contribution to Ruby is... -
09:09 AM Bug #5259 (Assigned): SizedQueue#max=で正でない数を指定できてしまう
- おっしゃる通りだと思いますので、テストを追加してコミットしておきます。
報告ありがとうございました。 -
03:29 PM Feature #5128: 日本語ドキュメントをUTF-8に
- (2011/09/01 19:32), NARUSE, Yui wrote:
> 2011年9月1日15:30 Ayumu Aizawa <[email protected]>:
>>> 他のファイルもやる必要があ... -
11:57 AM Bug #3422 (Closed): Object.const_get(:A, false) can access BasicObject::A
-
11:54 AM Bug #5154 (Closed): method_missing and module scope, regression in 1.9.3
-
11:52 AM Bug #5143 (Closed): include not properly registering modular methods
-
11:24 AM Bug #5269 (Closed): All ThreadError in PStore transaction will be caught and replaced with PStore::Error
- =begin
I noticed all ThreadError in PStore transaction will be caught and replaced with PStore::Error.
Here is an... -
03:11 AM Bug #5261 (Rejected): Symbol#to_proc memory leak in 1.9.x
- Closed on OP request. No memory leak found.
-
03:06 AM Bug #5261: Symbol#to_proc memory leak in 1.9.x
- Indeed you're right, the references certainly take longer to get collected but don't increase considerably over time....
09/02/2011
-
11:47 PM Bug #5164: Line endings, bug/regression or feature of 1.9.3?
- Thank you Nakada-san, works perfectly!
-
09:11 PM Bug #5164 (Closed): Line endings, bug/regression or feature of 1.9.3?
- This issue was solved with changeset r33165.
Luis, thank you for reporting this issue.
Your contribution to Ruby is g... -
09:29 PM Bug #5242 (Closed): ] C
- Duplicated.
-
09:26 PM Bug #5258 (Assigned): SizedQueueにBug #5195と同様のバグ
-
08:57 PM Bug #921 (Closed): autoload is not thread-safe
- Closing. Please reopen this ticket if you find any regression.
-
05:46 PM Bug #5267 (Closed): BigDecimal#sqrt の rdoc で、引数は必須
- ソース中の rdoc の記述では、BigDecimal#sqrt の引数は必須でないように
読めるが、必須なのでそのように。
diff --git ext/bigdecimal/bigdecimal.c ext/bigdeci... -
02:36 PM Bug #5264 (Closed): Commit 33157
- This issue was solved with changeset r33163.
Charlie, thank you for reporting this issue.
Your contribution to Ruby i... -
01:16 PM Bug #5264: Commit 33157
- Ok, can reproduce like this:
```ruby
require 'rubygems'
require 'redis-namespace'
require 'redis-store'
```
Which w... -
10:05 AM Bug #5264 (Feedback): Commit 33157
- Simplified code doesn't reproduce it.
class Redis; class Store < self; module Namespace; end; end; end
Is "Na... -
07:15 AM Bug #5264 (Closed): Commit 33157
- It appears this commit:
https://github.com/ruby/ruby/commit/43284b6bf8324a762808537d5cd2c0774b662a84
Breaks our... -
12:04 PM Bug #5266 (Closed): BigDecimal#sqrt で、大きな数の平方根の、要求する精度が低いある範囲のとき、結果がおかしい
- BigDecimal#sqrt で、大きい数(10**n でだいたい n > 100 あたり
から顕著)の平方根を求める時、sqrt の引数(桁数で要求する、精度の下限)
がだいたい 20 ~ 0.55 * n の時、期待するよう... -
09:58 AM Bug #5262 (Closed): invalid multibyte escapes should raise a clearer error
- This issue was solved with changeset r33161.
Larry, thank you for reporting this issue.
Your contribution to Ruby is ... -
03:04 AM Bug #5262 (Closed): invalid multibyte escapes should raise a clearer error
- Here's an irb example of the issue using 'curly-quotes':
ruby-1.9.2-p290 :001 > "“"
=> "“"
ruby-1.9.2-p290 ... -
04:53 AM Bug #5261: Symbol#to_proc memory leak in 1.9.x
- Ken Simon <[email protected]> wrote:
> It appears that running an array through .map(&:foo) leaks the array's
>... -
12:47 AM Bug #5261 (Rejected): Symbol#to_proc memory leak in 1.9.x
- =begin
It appears that running an array through .map(&:foo) leaks the array's contents, and they don't get picked up... -
03:31 AM Bug #5263 (Closed): Ruby crash when installing yard-0.7.2 installation
- $ sudo gem install yard
Successfully installed yard-0.7.2
1 gem installed
/usr/local/lib/ruby/gems/1.9.1/gems/yard...
09/01/2011
-
10:56 PM Bug #5259 (Closed): SizedQueue#max=で正でない数を指定できてしまう
- =begin
SizedQueue#max=で正でない数を指定できてしまいます。
require 'thread'
sq = SizedQueue.new(1)
sq.max = -1
p sq.max #... -
10:23 PM Bug #5258 (Closed): SizedQueueにBug #5195と同様のバグ
- =begin
[Bug #5195][ruby-dev:44400]と同様ですが、SizedQueue#pushでsleepしているthreadをwakeupさせると、SizedQueueの@queue_waitにそのthreadが... -
07:53 PM Feature #5128: 日本語ドキュメントをUTF-8に
- 2011年9月1日15:30 Ayumu Aizawa <[email protected]>:
>> 他のファイルもやる必要があるという話なので、自分でコミットしてもらったほうが
>> あとあとよいのではないでし... -
03:53 PM Feature #5128: 日本語ドキュメントをUTF-8に
- > 他のファイルもやる必要があるという話なので、自分でコミットしてもらったほうが
> あとあとよいのではないでしょうか。
文句がでないのであれば、マイペースに作業できるので(あと卜部さんの負担も減るし)
そうしても... -
02:23 PM Feature #5128: 日本語ドキュメントをUTF-8に
- > 誰からも文句が出ないのを見届けて今週中くらいを目安に卜部がpullします。
他のファイルもやる必要があるという話なので、自分でコミットしてもらったほうが
あとあとよいのではないでしょうか。 -
01:59 PM Feature #5128: 日本語ドキュメントをUTF-8に
- 誰からも文句が出ないのを見届けて今週中くらいを目安に卜部がpullします。
-
12:53 PM Feature #5128: 日本語ドキュメントをUTF-8に
- あいざわです
文字コードが混在するパッチはうまくあたらないみたいなので、最新のtrunk でrebase したものを
pull request しました -> https://github.com/ruby/ruby/... -
03:26 PM Bug #5256 (Third Party's Issue): My ruby crashed
- Run configure with --with-gcc=gcc-4.2.
-
03:04 PM Bug #5256 (Third Party's Issue): My ruby crashed
- Hey
I am on a Mac Osx platform and running ruby 1.9.2p180 (2011-02-18 revision 30909) [x86_64-darwin10.6.0]
The rub... -
10:36 AM Bug #921: autoload is not thread-safe
- Eric Wong wrote:
> I got the following with r33147 on gcc (Debian 4.6.1-4) 4.6.1:
>
> ../variable.c: In functi... -
06:23 AM Bug #921: autoload is not thread-safe
- Hiroshi Nakamura <[email protected]> wrote:
> I re-apply r33078 and additional fixes at r33147. I tested it again... -
09:19 AM Bug #5255 (Closed): C の Proc の比較のバグ
- すいません。 #5249ですでにチケット化ずみでした。closeします
-
09:17 AM Bug #5255: C の Proc の比較のバグ
- [ruby-dev:44435] をチケット化
-
09:15 AM Bug #5255 (Closed): C の Proc の比較のバグ
- 芝と申します。
Proc#eq(C の関数は proc.c 内の proc_eq)で、C で定義した Proc
(rb_proc_new などを用いて定義)の比較を行う箇所に不具合があります。
C で定義した Proc に対... -
09:15 AM Bug #5254 (Assigned): class オブジェクトの開放時に segv
- チケット化
-
09:14 AM Bug #5254 (Closed): class オブジェクトの開放時に segv
- 芝と申します。
次のようなコードを実行すると、gc の sweep フェーズで segv します。
# 再現コード
####################################
class B... -
04:23 AM Bug #5237: IO.copy_stream calls #read on an object infinitely many times
- Hi,
On Tue, Aug 30, 2011 at 8:48 PM, Motohiro KOSAKI
<[email protected]> wrote:
>
> Issue #5237 has be... -
01:22 AM Bug #5252: Segmentation Fault
- Actually the code is like this
begin
cloader_obj = CassandraLoader.new
cloader_obj.load_data1(settings_hash)
... -
01:12 AM Bug #5252: Segmentation Fault
- I will let the developers know about this issue. For now, i have added GC.start after each of the methods inside the ...
08/31/2011
-
05:51 PM Bug #921: autoload is not thread-safe
- I re-apply r33078 and additional fixes at r33147. I tested it against Rails 3.1.0 and confirmed that it passes all of...
-
02:55 PM Bug #5252: Segmentation Fault
- Then you should check your proprietary extension for potentially missing GC guard: http://timetobleed.com/the-broken-...
-
02:44 PM Bug #5252: Segmentation Fault
- I am using two C extensions, one is a proprietary one to query a oracle database and the other is thrift which is use...
-
01:01 PM Bug #5252: Segmentation Fault
- Are you using any C extensions or libraries that may depend on C extensions? This looks like a well-know type of prob...
-
07:23 AM Bug #5252 (Closed): Segmentation Fault
- I am running a rake task to query data from a oracle database using C extension, I am seeing segmentation fault happe...
-
02:29 PM Bug #5227: Float#round fails on corner cases
- "So what's the test going to achieve? What's that test for?" said my
teacher another day. A test has a perspecti... -
01:13 PM Bug #5227 (Closed): Float#round fails on corner cases
- This issue was solved with changeset r33140.
Marc-Andre, thank you for reporting this issue.
Your contribution to Rub... -
10:23 AM Bug #5227: Float#round fails on corner cases
- 2011/8/31 Marc-Andre Lafortune <[email protected]>:
> Hi,
>
> On Sun, Aug 28, 2011 at 8:53 PM,... -
09:53 AM Bug #5227: Float#round fails on corner cases
- Hi,
On Sun, Aug 28, 2011 at 8:53 PM, NARUSE, Yui <[email protected]> wrote:
>>> Adding tests to RubySpec is n... -
12:48 PM Bug #5237: IO.copy_stream calls #read on an object infinitely many times
- If you are reading following paragraph,
> * At end of file, it returns ... -
06:23 AM Bug #5251: Thread Change Breaks Windows Builds
- Motohiro KOSAKI <[email protected]> wrote:
> This regression was caused by Bug#5229(rb_thread_select() rew... -
05:33 AM Bug #5251 (Closed): Thread Change Breaks Windows Builds
- This regression was caused by Bug#5229(rb_thread_select() rewritten) and fixed by r33128, r33130, r33131, r33132, r33...
08/30/2011
-
11:29 PM Bug #921: autoload is not thread-safe
- Hmm. Updating via reply e-mail seems to remove 'ruby -v'...
-
11:23 PM Bug #921: autoload is not thread-safe
- On Tue, Aug 30, 2011 at 07:14, Eric Wong <[email protected]> wrote:
> Hiroshi Nakamura <[email protected]> wro... -
07:23 AM Bug #921: autoload is not thread-safe
- Hiroshi Nakamura <[email protected]> wrote:
> I'll commit this soon. Committers, please evaluate this.
I not... -
09:25 PM Bug #5251 (Assigned): Thread Change Breaks Windows Builds
-
03:20 PM Bug #5251 (Closed): Thread Change Breaks Windows Builds
- This commit:
Commit:4e9438bc9153f7a1f4ea0af85c8dbe359e1a55d8
Causes this error:
thread.c: In function `rb_th... -
05:52 PM Bug #4576: Range#step miss the last value, if end-exclusive and has float number
- Usaku NAKAMURA wrote:
> Hello,
>
> In message "[ruby-core:35804] [Ruby 1.9 - Bug #4576] Range#step miss the last ... -
03:24 PM Bug #5193: ruby_thread_data_type linker errors fixed with RUBY_EXTERN
- Just wanted to follow up on this. Can we do something about this for the 1.9.3 release?
Thanks - Charlie -
03:08 PM Bug #5240: Hang when using threads + forks on Debian GNU/kFreeBSD
- I looked at the change and in general should work even for our slightly broken pthread semantic on GNU/kFreeBSD.
It... -
12:12 PM Bug #1792: Fixnum#& 等が、Rational などを受けつける
- 散発的になってすいませんが、RubySpecも追従よろしくお願いします
-
11:23 AM Bug #5173 (Closed): [PATCH] json/generator: prevent GC of temporary strings
- This issue was solved with changeset r33122.
Eric, thank you for reporting this issue.
Your contribution to Ruby is g... -
10:01 AM Bug #5195: Queue#popでsleepしているthreadをwakeupさせるとQueueの@waitingにそのthreadがpushされてしまう
- コミットしましたが、1)あからさまに場当たり的workaroundであること 2)作為的なテストケースであること により1.9.3にbackportはしませんでした。
-
09:59 AM Bug #5195 (Closed): Queue#popでsleepしているthreadをwakeupさせるとQueueの@waitingにそのthreadがpushされてしまう
- This issue was solved with changeset r33121.
Masaki, thank you for reporting this issue.
Your contribution to Ruby is... -
09:53 AM Feature #5138: Add nonblocking IO that does not use exceptions for EOF and EWOULDBLOCK
- Shyouhei Urabe <[email protected]> wrote:
> Instead of avoiding exceptions I would like to suggest making
>... -
09:51 AM Bug #5241 (Closed): test_massign.rb:165 fails on Debian GNU/kFreeBSD (amd64)
- This issue was solved with changeset r33118.
Lucas, thank you for reporting this issue.
Your contribution to Ruby is ... -
09:33 AM Bug #5229 (Closed): [PATCH] thread.c (rb_thread_select): implement using rb_thread_fd_select
- This issue was solved with changeset r33117.
Eric, thank you for reporting this issue.
Your contribution to Ruby is g... -
09:13 AM Bug #5250 (Closed): Fails to build on Hurd: struct dirent issue
- This issue was solved with changeset r33114.
Lucas, thank you for reporting this issue.
Your contribution to Ruby is ... -
07:15 AM Bug #5250 (Assigned): Fails to build on Hurd: struct dirent issue
- I'll to commit this patch as is.
-
05:16 AM Bug #5250 (Closed): Fails to build on Hurd: struct dirent issue
- Hi,
Copied from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639664 :
<-----------
From: Samuel Thibault <st... -
07:53 AM Bug #5237: IO.copy_stream calls #read on an object infinitely many times
- On Sat, Aug 27, 2011 at 10:55 PM, KOSAKI Motohiro
<[email protected]> wrote:
>>> The class that implemen... -
07:29 AM Bug #5164: Line endings, bug/regression or feature of 1.9.3?
- > Mr Nakada,
>
> I can take care of this if time is an issue for you. I just need your approval/confirmation fro... -
07:13 AM Bug #5164: Line endings, bug/regression or feature of 1.9.3?
- Mr Nakada,
I can take care of this if time is an issue for you. I just need your approval/confirmation from you.
...
08/29/2011
-
11:25 PM Bug #1792 (Closed): Fixnum#& 等が、Rational などを受けつける
- ごめんなさいごめんなさい。
r33113 で修正しました。
-
04:18 PM Bug #1792 (Assigned): Fixnum#& 等が、Rational などを受けつける
- これの影響で以下のようなエラーが出ています。
2) Error:
test_num2long(TestNumeric):
TypeError: can't convert Object into Integer for bi... -
02:09 PM Bug #1792 (Closed): Fixnum#& 等が、Rational などを受けつける
- むらたです。
そこまで重要ではないと思うので、バックポートはしないことにします。 -
11:53 AM Bug #1792: Fixnum#& 等が、Rational などを受けつける
- > これは 1.9.3 にバックポートしても良いですか?
以下はどのくら深刻なのでしょうか。
> 1 & 1.5 がエラーになるので、
> 1 & Rational(3,2)
> や
> ... -
10:09 AM Bug #1792: Fixnum#& 等が、Rational などを受けつける
- これは 1.9.3 にバックポートしても良いですか?
-
04:19 PM Bug #5249 (Closed): C の Proc の比較のバグ
- 芝と申します。
Proc#eq(C の関数は proc.c 内の proc_eq)で、C で定義した Proc
(rb_proc_new などを用いて定義)の比較を行う箇所に不具合があります。
C で定義した Proc に対... -
04:12 PM Feature #5248: Faster PStore
- Kenta Murata wrote:
> The accident you mentioned seems to occur in the current implementation probabilistically.
... -
04:10 PM Feature #5248: Faster PStore
- Kenta Murata wrote:
> Yui NARUSE wrote:
> > When the checksum of your data accidentally equals to old data, PStore ... -
02:37 PM Feature #5248: Faster PStore
- Yui NARUSE wrote:
> When the checksum of your data accidentally equals to old data, PStore won't save the data and y... -
12:05 PM Feature #5248: Faster PStore
- I agree with your points except following one.
Masaki Matsushita wrote:
> * check-sum calculation by String#sum
... -
11:52 AM Feature #5248 (Closed): Faster PStore
- =begin
Hellow.
I wrote a patch to make PStore more faster.
What I did as follows:
:deferred check sum calcula... -
03:53 PM Bug #5239: bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- >> > In the other hand, on assert_normal_exit(), io.close is called from
>> > sub thread. it's a source
>> > of ... -
03:43 PM Bug #5239 (Rejected): bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
-
03:23 PM Bug #5239: bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- On 29/08/11 at 13:56 +0900, Lucas Nussbaum wrote:
> On 29/08/11 at 12:43 +0900, KOSAKI Motohiro wrote:
> > > I'v... -
01:59 PM Bug #5239: bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- On 29/08/11 at 12:43 +0900, KOSAKI Motohiro wrote:
> > I've just checked, and FreeBSD 8.2 is also affected by this... -
01:18 AM Bug #5239: bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- Hi,
I've just checked, and FreeBSD 8.2 is also affected by this issue.
Test script:
system("false")
sleep 0.5
... -
09:59 AM Bug #5227: Float#round fails on corner cases
- 2011/8/29 Marc-Andre Lafortune <[email protected]>:
> On Sat, Aug 27, 2011 at 4:32 AM, NARUSE, Y... -
04:53 AM Bug #5227: Float#round fails on corner cases
- Hi,
On Sat, Aug 27, 2011 at 4:32 AM, NARUSE, Yui <[email protected]> wrote:
> (2011/08/27 4:40), Marc-Andre L... -
04:53 AM Bug #5227: Float#round fails on corner cases
- Hi,
On Sat, Aug 27, 2011 at 4:20 AM, Nobuyoshi Nakada <[email protected]> wrote:
> In fact, your patch break... -
09:32 AM Feature #1408 (Closed): 0.1.to_r not equal to (1/10)
- I close this ticket because the topic was too diverged.
Would you please make new tickets for the new version of rub...
08/28/2011
-
10:50 PM Bug #5246 (Closed): bootstraptest fails on ia64
- Hi,
There are several failures during bootstraptest on ia64:
- test_massign.rb:165
- test_thread.rb:287
- test_... -
07:48 PM Bug #5244 (Closed): Continuation causes Bus Error on Debian sparc
- Hi,
$ ./miniruby -I./lib -I. -I.ext/common ./tool/runruby.rb --extout=.ext -rcontinuation -e 'callcc { |c| c.call ... -
04:35 PM Bug #5213 (Closed): GC.stress=true で TestSH#test_commercial が Failure になる
- r33106 でコミットしました。
-
04:14 PM Bug #5241 (Assigned): test_massign.rb:165 fails on Debian GNU/kFreeBSD (amd64)
- Ok, I'll commit your patch. Thank you!
-
03:53 PM Bug #5241: test_massign.rb:165 fails on Debian GNU/kFreeBSD (amd64)
- Hi,
The attached patch fixes the issue. It's a bug in FreeBSD's mmap, that was already reported.
__FreeBSD__ is... -
09:42 AM Bug #5241 (Feedback): test_massign.rb:165 fails on Debian GNU/kFreeBSD (amd64)
- Why do kFreeBSD fail to allocate a stack?
-
06:25 AM Bug #5241 (Closed): test_massign.rb:165 fails on Debian GNU/kFreeBSD (amd64)
- Hi,
With a reduced testcase:
# ruby1.9.1 -e "Fiber::new {}.resume"
-e:1:in `resume': can't alloc machine stack t... -
03:11 PM Bug #5240: Hang when using threads + forks on Debian GNU/kFreeBSD
- I'm sorry, I'm not familiar with that code at all.
What I can provide is a kfreebsd amd64 qemu image inside which ... -
09:48 AM Bug #5240 (Feedback): Hang when using threads + forks on Debian GNU/kFreeBSD
- Please send us an analysis and a patch.
-
06:10 AM Bug #5240 (Closed): Hang when using threads + forks on Debian GNU/kFreeBSD
- Hi,
The following test script (derived from a test in bootstraptest/test_fork.rb)
hangs very frequently on Debian... -
02:59 PM Bug #5237: IO.copy_stream calls #read on an object infinitely many times
- >> The class that implements an IO#read-like method without clearing
>> the destination buffer on EOF is arguably ... -
02:53 AM Bug #5237: IO.copy_stream calls #read on an object infinitely many times
- On Sat, Aug 27, 2011 at 3:54 AM, Eric Wong <[email protected]> wrote:
>
> Issue #5237 has been updated by Eric... -
09:53 AM Bug #5239: bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- >> > RATIONALE
>> > A call to the wait() or waitpid() function only returns status on an immediate child process o... -
06:29 AM Bug #5239: bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- On 28/08/11 at 02:30 +0900, Motohiro KOSAKI wrote:
>
> Issue #5239 has been updated by Motohiro KOSAKI.
>
... -
02:30 AM Bug #5239 (Assigned): bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- > The problem is that the call to $? in the thread cannot retrieve the exit value of the process started by popen. "$...
-
02:13 AM Bug #5239: bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- The attached patch fixes this. Could you consider applying to 1.9.3 too?
Thanks -
02:02 AM Bug #5239 (Rejected): bootstraptest/runner.rb: assert_normal_exit logic broken on Debian/GNU kFreeBSD
- Hi,
assert_normal_exit() breaks on some platforms, such as Debian GNU/kFreeBSD.
It does:
begin
$s... -
08:11 AM Bug #5243 (Closed): VC 2010 Has stdint.h - Patch to Fix Build Files
- VC 2010 added the c99 include file <stdint.h>. However, the Ruby makefiles in win32 have not taken this into account...
-
07:13 AM Bug #5242 (Closed): ] C
- $B<G$H?=$7$^$9!#(B
Proc#eq(C $B$N4X?t$O(B proc.c $BFb$N(B proc_eq)$B$G!"(BC $B$GDj5A$7$?(B Proc
(rb... -
06:26 AM Feature #4985: Add %S[] support for making a list of symbols
- Bump
Also available in: Atom