summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-12 08:13:28 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-12 08:13:28 +0000
commite439bc27dc5f6814b49309b4ad32b8d3ca54e9a4 (patch)
tree127adbc9559d0dd3f365f14a9ce9b5bc778f34e6 /bignum.c
parentec14c2c9b925f6add71f7f4d25e0a281f8adb252 (diff)
* parse.y (f_larglist): allow optional arguments even when
parentheses are omitted. based on Nobu's patch from http://www.rubyist.net/~nobu/t/20050805.html * parse.y (parser_yylex): update & maintain lpar_beg for detect lambda parameters. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bignum.c b/bignum.c
index 63ad2712bd..38254534ad 100644
--- a/bignum.c
+++ b/bignum.c
@@ -922,7 +922,7 @@ rb_big_to_f(x)
*
*/
-static VALUE
+VALUE
rb_big_cmp(x, y)
VALUE x, y;
{
@@ -968,7 +968,7 @@ rb_big_cmp(x, y)
* 68719476736 == 68719476736.0 #=> true
*/
-static VALUE
+VALUE
rb_big_eq(x, y)
VALUE x, y;
{