summaryrefslogtreecommitdiffstats
path: root/include/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-14 07:39:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-14 07:39:16 +0000
commit8a0441d05eca15936633e6e518ae40275898db46 (patch)
tree16510a1d146c7045fa024148d59f46237a341157 /include/ruby
parent1f6497ae9c0a6a35ebf0e4a58263b69279290c93 (diff)
downloadruby-8a0441d05eca15936633e6e518ae40275898db46.tar.gz
ruby-8a0441d05eca15936633e6e518ae40275898db46.tar.xz
ruby-8a0441d05eca15936633e6e518ae40275898db46.zip
* debug.c, parse.y: fixed types.
* node.h (nd_line): limit to int. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24924 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/encoding.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h
index 9be412ddf..30527779a 100644
--- a/include/ruby/encoding.h
+++ b/include/ruby/encoding.h
@@ -170,6 +170,7 @@ int rb_enc_tolower(int c, rb_encoding *enc);
ID rb_intern3(const char*, long, rb_encoding*);
ID rb_interned_id_p(const char *, long, rb_encoding *);
int rb_enc_symname_p(const char*, rb_encoding*);
+int rb_enc_symname2_p(const char*, long, rb_encoding*);
int rb_enc_str_coderange(VALUE);
long rb_str_coderange_scan_restartable(const char*, const char*, rb_encoding*, int*);
int rb_enc_str_asciionly_p(VALUE);