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

vm_dump.c: statement for crash report log

* vm_dump.c (preface_dump): move the statement to include crash
  report log file from REPORTBUG_MSG in error.c.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-05-12 07:22:57 +00:00
parent 7f2c079e46
commit 4ce15bf491
2 changed files with 4 additions and 10 deletions

View file

@ -47,9 +47,6 @@ static const char REPORTBUG_MSG[] =
" or extension libraries.\n" \
"Bug reports are welcome.\n" \
""
#if defined __APPLE__
"Don't forget to include the above Crash Report log file.\n"
#endif
"For details: http://www.ruby-lang.org/bugreport.html\n\n" \
;

View file

@ -949,6 +949,7 @@ preface_dump(void)
" * ~/Library/Logs/DiagnosticReports\n"
" * /Library/Logs/DiagnosticReports\n"
" for more details.\n"
"Don't forget to include the above Crash Report log file in bug reports.\n"
"\n";
const char *const endmsg = msg + sizeof(msg) - 1;
const char *p = msg;
@ -959,18 +960,14 @@ preface_dump(void)
if (isatty(fileno(stderr))) {
const char *e = strchr(p, '\n');
const int w = (int)(e - p);
fputs(RED, stderr);
fwrite(p, 1, w, stderr);
fputs(RESET, stderr);
fputc('\n', stderr);
while ((p = e + 1) < endmsg && (e = strchr(p, '\n')) != 0 && e > p + 1) {
do {
int i = (int)(e - p);
fputs(GREEN, stderr);
fputs(*p == ' ' ? GREEN : RED, stderr);
fwrite(p, 1, e - p, stderr);
for (; i < w; ++i) fputc(' ', stderr);
fputs(RESET, stderr);
fputc('\n', stderr);
}
} while ((p = e + 1) < endmsg && (e = strchr(p, '\n')) != 0 && e > p + 1);
}
fwrite(p, 1, endmsg - p, stderr);
#endif