[#27417] selector namespace — Shugo Maeda <shugo@...>

前田です。

17 messages 2005/10/13

[#27458] Matrix class is broken without mathn — akira yamada / やまだあきら <akira@...>

Debianユーザからrequire "mathn"しないときに

28 messages 2005/10/19
[#27461] Re: Matrix class is broken without mathn — Yukihiro Matsumoto <matz@...> 2005/10/19

まつもと ゆきひろです

[#27596] Re: Matrix class is broken without mathn — Masahiro Sakai (酒井政裕) <sakai@...> 2005/10/31

酒井といいます。

[#27601] Re: Matrix class is broken without mathn — Yukihiro Matsumoto <matz@...> 2005/10/31

まつもと ゆきひろです

[#27605] Re: Matrix class is broken without mathn — keiju@... (石塚圭樹) 2005/10/31

けいじゅ@いしつかです.

[#27691] Re: Matrix class is broken without mathn — Shin-ichiro HARA <sinara@...> 2005/11/12

原です。

[#27700] Re: Matrix class is broken without mathn — keiju@... (石塚圭樹) 2005/11/14

けいじゅ@いしつかです.

[#27484] 1.8.4 feature freeze? — "URABE Shyouhei aka. mput" <root@...>

卜部です。

19 messages 2005/10/23
[#27485] Re: 1.8.4 feature freeze? — Yukihiro Matsumoto <matz@...> 2005/10/23

まつもと ゆきひろです

[#27492] Re: [ ruby-Bugs-2613 ] building ruby 1.8.3 on Solaris — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>

山本です。

20 messages 2005/10/24
[#27493] Re: [ ruby-Bugs-2613 ] building ruby 1.8.3 on Solaris — Yukihiro Matsumoto <matz@...> 2005/10/24

まつもと ゆきひろです

[#27494] Re: [ ruby-Bugs-2613 ] building ruby 1.8.3 on Solaris — WATANABE Hirofumi <eban@...> 2005/10/24

わたなべです。

[#27495] Re: [ ruby-Bugs-2613 ] building ruby 1.8.3 on Solaris — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/10/24

山本です。

[#27503] Re: [ ruby-Bugs-2613 ] building ruby 1.8.3 on Solaris — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/10/25

山本です。

[#27504] Re: [ ruby-Bugs-2613 ] building ruby 1.8.3 on Solaris — "U.Nakamura" <usa@...> 2005/10/25

こんにちは、なかむら(う)です。

[#27505] Re: [ ruby-Bugs-2613 ] building ruby 1.8.3 on Solaris — nobuyoshi nakada <nobuyoshi.nakada@...> 2005/10/25

なかだです。

[#27551] 1.8.4 検証を(だれが|どのように)行うか — "URABE Shyouhei aka.mput" <root@...>

さて、 1.8.4-Preview1

41 messages 2005/10/28
[#27561] Re: 1.8.4 検証を(だれが|どのように)行うか — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/10/30

山本です。

[#27562] Re: 1.8.4 検証を(だれが�匹里茲Δ�)行うか — "URABE Shyouhei aka.mput" <root@...> 2005/10/30

卜部です。

[#27566] Re: 1.8.4 検証を(だれが|どのように)行うか — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/10/30

山本です。

[#27586] Re: 1.8.4 検証を(だれが|どのように)行うか — "U.Nakamura" <usa@...> 2005/10/31

こんにちは、なかむら(う)です。

[#27587] Re: 1.8.4 検証を(だれが|どのように)行うか — Yukihiro Matsumoto <matz@...> 2005/10/31

まつもと ゆきひろです

[ruby-dev:27435] exported internal symbols

From: nobuyoshi nakada <nobuyoshi.nakada@...>
Date: 2005-10-18 06:21:37 UTC
List: ruby-dev #27435
なかだです。

rb_,ruby_,st_,dln_,onig_などのprefixがついていないのにstaticで
ないシンボルがいくつかあります。
# enumerator_initとparser_yyparseは1.9のみ

ほとんどは単にstaticを付け忘れただけと思われるのですが、この二
つだけは定義したファイル以外では参照されていないのに、わざわざ
externをつけてあります。特別な理由があるのでしょうか。

  node_new_cclass_by_codepoint_range
  sjis_code_to_mbclen


Index: enumerator.c
===================================================================
RCS file: /cvs/ruby/src/ruby/enumerator.c,v
retrieving revision 1.7
diff -U2 -p -r1.7 enumerator.c
--- enumerator.c	14 Sep 2005 08:30:15 -0000	1.7
+++ enumerator.c	18 Oct 2005 05:24:23 -0000
@@ -262,5 +262,5 @@ enumerator_allocate(VALUE klass)
 }
 
-VALUE
+static VALUE
 enumerator_init(VALUE enum_obj, VALUE obj, VALUE meth, int argc, VALUE *argv)
 {
Index: eval.c
===================================================================
RCS file: /cvs/ruby/src/ruby/eval.c,v
retrieving revision 1.838
diff -U2 -p -r1.838 eval.c
--- eval.c	11 Oct 2005 12:42:32 -0000	1.838
+++ eval.c	18 Oct 2005 05:31:11 -0000
@@ -12587,5 +12587,5 @@ thgroup_list(VALUE group)
  */
 
-VALUE
+static VALUE
 thgroup_enclose(VALUE group)
 {
Index: gc.c
===================================================================
RCS file: /cvs/ruby/src/ruby/gc.c,v
retrieving revision 1.213
diff -U2 -p -r1.213 gc.c
--- gc.c	8 Oct 2005 09:58:23 -0000	1.213
+++ gc.c	18 Oct 2005 05:26:05 -0000
@@ -644,5 +644,5 @@ mark_entry(ID key, VALUE value, int lev)
 }
 
-void
+static void
 mark_tbl(st_table *tbl, int lev)
 {
@@ -665,5 +665,5 @@ mark_keyvalue(VALUE key, VALUE value, in
 }
 
-void
+static void
 mark_hash(st_table *tbl, int lev)
 {
Index: parse.y
===================================================================
RCS file: /cvs/ruby/src/ruby/parse.y,v
retrieving revision 1.420
diff -U2 -p -r1.420 parse.y
--- parse.y	13 Oct 2005 14:25:47 -0000	1.420
+++ parse.y	18 Oct 2005 05:30:27 -0000
@@ -238,5 +238,5 @@ static int yylex(void*, void*);
 
 #ifndef RIPPER
-#define yyparse parser_yyparse
+#define yyparse ruby_yyparse
 #define yydebug ruby_yydebug
 
Index: time.c
===================================================================
RCS file: /cvs/ruby/src/ruby/time.c,v
retrieving revision 1.106
diff -U2 -p -r1.106 time.c
--- time.c	24 Sep 2005 23:45:46 -0000	1.106
+++ time.c	18 Oct 2005 05:32:36 -0000
@@ -105,5 +105,5 @@ time_init(VALUE time)
 #define NMOD(x,y) ((y)-(-((x)+1)%(y))-1)
 
-void
+static void
 time_overflow_p(time_t *secp, time_t *usecp)
 {


-- 
--- 僕の前にBugはない。
--- 僕の後ろにBugはできる。
    中田 伸悦

In This Thread

Prev Next