diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-27 06:27:39 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-27 06:27:39 +0000 |
commit | a9f1a3c3b84d05a1b0184c42f3191559202974a4 (patch) | |
tree | e38ce9dc8c3ced6336d596375822c62d093df6be /encoding.c | |
parent | 6c43158cfdc92bcbcb793dbe9144689b01413ec6 (diff) | |
download | ruby-a9f1a3c3b84d05a1b0184c42f3191559202974a4.tar.gz ruby-a9f1a3c3b84d05a1b0184c42f3191559202974a4.tar.xz ruby-a9f1a3c3b84d05a1b0184c42f3191559202974a4.zip |
* encoding.c (rb_enc_codelen): show codepoint in error message.
* include/ruby/encoding.h (rb_enc_codelen): comment it returns
positive integer.
* string.c (rb_str_concat): rb_enc_codelen doesn't return 0.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14733 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 5c74871ec..2e8b9b54e 100644 --- a/encoding.c +++ b/encoding.c @@ -680,7 +680,7 @@ rb_enc_codelen(int c, rb_encoding *enc) { int n = ONIGENC_CODE_TO_MBCLEN(enc,c); if (n == 0) { - rb_raise(rb_eArgError, "invalid codepoint"); + rb_raise(rb_eArgError, "invalid codepoint 0x%x", c); } return n; } |