1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* error.c (report_bug): uses ruby_description.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-12-25 02:33:54 +00:00
parent 1af43d329f
commit 81a68908cd
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Tue Dec 25 11:33:52 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* error.c (report_bug): uses ruby_description.
Tue Dec 25 11:20:38 2007 Koichi Sasada <ko1@atdot.net>
* compile.c (iseq_compile_each): fix stack consistency error.

View file

@ -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();
}
}