summaryrefslogtreecommitdiffstats
path: root/intern.h
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
commit9ea490c3eebb963d771be6da00efc85c014df965 (patch)
tree127adbc9559d0dd3f365f14a9ce9b5bc778f34e6 /intern.h
parentc83746c9101b1e3319af8764439c19a0b140e43f (diff)
downloadruby-9ea490c3eebb963d771be6da00efc85c014df965.tar.gz
ruby-9ea490c3eebb963d771be6da00efc85c014df965.tar.xz
ruby-9ea490c3eebb963d771be6da00efc85c014df965.zip
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@8971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern.h b/intern.h
index cb16a81eb..113be3f98 100644
--- a/intern.h
+++ b/intern.h
@@ -95,6 +95,8 @@ void rb_quad_pack _((char*,VALUE));
VALUE rb_quad_unpack _((const char*,int));
VALUE rb_dbl2big _((double));
double rb_big2dbl _((VALUE));
+VALUE rb_big_cmp _((VALUE, VALUE));
+VALUE rb_big_eq _((VALUE, VALUE));
VALUE rb_big_plus _((VALUE, VALUE));
VALUE rb_big_minus _((VALUE, VALUE));
VALUE rb_big_mul _((VALUE, VALUE));