From c4ae288b907acd4fe25673d969a15fefa73a635f Mon Sep 17 00:00:00 2001 From: knu Date: Sat, 31 May 2008 13:37:06 +0000 Subject: Merge from ruby_1_8. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@16723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- error.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'error.c') diff --git a/error.c b/error.c index 4dd5a421b4..c6d7e6e107 100644 --- a/error.c +++ b/error.c @@ -29,8 +29,7 @@ #define EXIT_SUCCESS 0 #endif -extern const char ruby_version[], ruby_release_date[], ruby_platform[]; -extern const int ruby_patchlevel; +extern const char *ruby_description; int ruby_nerrs; @@ -209,8 +208,7 @@ rb_bug(fmt, va_alist) va_init_list(args, fmt); vfprintf(out, fmt, args); va_end(args); - fprintf(out, "\nruby %s (%s patchlevel %d) [%s]\n\n", - ruby_version, ruby_release_date, ruby_patchlevel, ruby_platform); + fprintf(out, "\n%s\n\n", ruby_description); } abort(); } -- cgit v1.2.1