From 81a68908cdefd6b399e9cb012c58fcf71c3f700d Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 25 Dec 2007 02:33:54 +0000 Subject: * error.c (report_bug): uses ruby_description. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- error.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'error.c') diff --git a/error.c b/error.c index b8a98acfae..96e476ae2c 100644 --- a/error.c +++ b/error.c @@ -23,7 +23,7 @@ #define EXIT_SUCCESS 0 #endif -extern const char ruby_version[], ruby_release_date[], ruby_platform[]; +extern const char ruby_desription[]; static int err_position_0(char *buf, long len, const char *file, int line) @@ -208,11 +208,10 @@ report_bug(const char *file, int line, const char *fmt, va_list args) if (fwrite(buf, 1, len, out) == len || fwrite(buf, 1, len, (out = stdout)) == len) { - rb_vm_bugreport(); fputs("[BUG] ", out); vfprintf(out, fmt, args); - fprintf(out, "\nruby %s (%s) [%s]\n\n", - ruby_version, ruby_release_date, ruby_platform); + fprintf(out, "\n%s\n\n", ruby_description); + rb_vm_bugreport(); } } -- cgit v1.2.1