aboutsummaryrefslogtreecommitdiffstats
path: root/version.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-10 05:20:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-10 05:20:46 +0000
commit7fbd88239fe586815be5eb85cefd15ce04ec8049 (patch)
treeb7b3f9b8ab74da385673bbca4166def6f8d39f77 /version.c
parentc0d1a46fc3549340ccd4af8fbd0b491de4ea421d (diff)
downloadruby-7fbd88239fe586815be5eb85cefd15ce04ec8049.tar.gz
version.c: MKSTR for fake.rb
* version.c (Init_ruby_description): fake.rb needs MKSTR to extract constant names. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64266 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'version.c')
-rw-r--r--version.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/version.c b/version.c
index fc7105f416..36c2f05756 100644
--- a/version.c
+++ b/version.c
@@ -95,7 +95,7 @@ Init_ruby_description(void)
/*
* The full ruby version string, like <tt>ruby -v</tt> prints
*/
- rb_define_global_const("RUBY_DESCRIPTION", description);
+ rb_define_global_const("RUBY_DESCRIPTION", /* MKSTR(description) */ description);
}
/*! Prints the version information of the CRuby interpreter to stdout. */