summaryrefslogtreecommitdiff
path: root/error.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-18 03:48:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-18 03:48:03 +0000
commit402b8f5de9b29449bb66de21d95c87edcf186b84 (patch)
tree9cdee258609293b96540c67b67f760f5429541ec /error.c
parentd0182b81b3c0fbf99aa9e7f2e76ae6ddb3db18d7 (diff)
* error.c (report_bug): rb_bug can be caused by extension
libraries. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/error.c b/error.c
index 95f98ca4dd..a5130471b0 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");
}
}