Skip to content

Commit

Permalink
* enc/encdb.c (ENC_SET_BASE): fix typo. patch by ujihisa [ruby-dev:39…
Browse files Browse the repository at this point in the history
…004]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nurse committed Aug 4, 2009
1 parent 8c65813 commit 3810745
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Tue Aug 4 12:40:45 2009 NARUSE, Yui <[email protected]>

* enc/encdb.c (ENC_SET_BASE): fix typo.
patch by ujihisa [ruby-dev:39004]

Tue Aug 4 09:41:11 2009 NARUSE, Yui <[email protected]>

* enc/big5.c (EncLen_Big5): back to original Big5 table.
Expand Down
2 changes: 1 addition & 1 deletion enc/encdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void rb_enc_set_base(const char *name, const char *orig);
#define ENC_ALIAS(name, orig) rb_encdb_alias(name, orig)
#define ENC_DUMMY(name) rb_encdb_dummy(name)
#define ENC_DEFINE(name) rb_encdb_declare(name)
#define ENC_SET_BASE(name) rb_enc_set_base(name)
#define ENC_SET_BASE(name, orig) rb_enc_set_base(name, orig)

void
Init_encdb(void)
Expand Down

0 comments on commit 3810745

Please sign in to comment.