From 8aff9b5a2a0eb853f1e33b8bf17102edf7488921 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 18 Mar 2009 03:48:03 +0000 Subject: * error.c (report_bug): rb_bug can be caused by extension libraries. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ error.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 62c16a36e..163c38465 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Mar 18 12:48:01 2009 Nobuyoshi Nakada + + * error.c (report_bug): rb_bug can be caused by extension + libraries. + Wed Mar 18 02:41:33 2009 Masatoshi SEKI * lib/drb/drb.rb (open_server_inaddr_any): fixed multiple network diff --git a/error.c b/error.c index 95f98ca4d..a5130471b 100644 --- a/error.c +++ b/error.c @@ -216,7 +216,9 @@ report_bug(const char *file, int line, const char *fmt, va_list args) fprintf(out, "[NOTE]\n" - "You may have encountered a bug in the Ruby interpreter. Bug reports are welcome.\n" + "You may have encountered a bug in the Ruby interpreter" + " or extension libraries.\n" + "Bug reports are welcome.\n" "For details: http://www.ruby-lang.org/bugreport.html\n\n"); } } -- cgit