diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-11 07:39:16 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-11 07:39:16 +0000 |
commit | 5740d2ef52c6d46a1ebfae55f9ccd3230e4b9b1c (patch) | |
tree | 9fa0d68c5c6a149ea2c2b1226d3e2b1688186d20 /encoding.c | |
parent | c65be08b84a200c68f87d1e9fb5acc0f3cf3b509 (diff) | |
download | ruby-5740d2ef52c6d46a1ebfae55f9ccd3230e4b9b1c.tar.gz ruby-5740d2ef52c6d46a1ebfae55f9ccd3230e4b9b1c.tar.xz ruby-5740d2ef52c6d46a1ebfae55f9ccd3230e4b9b1c.zip |
* encoding.c (rb_enc_ascget): renamed from rb_enc_get_ascii.
* include/ruby/encoding.h: follow the renaming.
* re.c: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'encoding.c')
-rw-r--r-- | encoding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/encoding.c b/encoding.c index 5949b17bf..3f7a39b29 100644 --- a/encoding.c +++ b/encoding.c @@ -505,7 +505,7 @@ rb_enc_precise_mbclen(const char *p, const char *e, rb_encoding *enc) return n; } -int rb_enc_get_ascii(const char *p, const char *e, int *len, rb_encoding *enc) +int rb_enc_ascget(const char *p, const char *e, int *len, rb_encoding *enc) { int c, l; if (e <= p) |