diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-11-29 08:47:28 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-11-29 08:47:28 +0900 |
| commit | 9c6398a444259a82b4ed531323b153bbce03af62 (patch) | |
| tree | c5a2ba787a39c09434242f72eb83b180f8585489 /src/debug.c | |
| parent | 9ac386923d6a2dc62b5ec61fa8bcbc2f1f551be9 (diff) | |
| download | mruby-9c6398a444259a82b4ed531323b153bbce03af62.tar.gz mruby-9c6398a444259a82b4ed531323b153bbce03af62.zip | |
rename mrb_intern2() to mrb_intern(); huge API incompatibility; close #1513
Diffstat (limited to 'src/debug.c')
| -rw-r--r-- | src/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.c b/src/debug.c index 8e4311f6c..075af5c24 100644 --- a/src/debug.c +++ b/src/debug.c @@ -154,7 +154,7 @@ mrb_debug_info_append_file(mrb_state *mrb, mrb_irep *irep, info->pc_count = end_pos; fn_len = strlen(irep->filename); - ret->filename_sym = mrb_intern2(mrb, irep->filename, fn_len); + ret->filename_sym = mrb_intern(mrb, irep->filename, fn_len); len = 0; ret->filename = mrb_sym2name_len(mrb, ret->filename_sym, &len); |
