| Index: src/d8.cc
|
| diff --git a/src/d8.cc b/src/d8.cc
|
| index 93b383d9acda6c77560a7cf459613263db59d29c..1fdcc3e8146edb05a413dcf99fb04fc65faa17bd 100644
|
| --- a/src/d8.cc
|
| +++ b/src/d8.cc
|
| @@ -271,7 +271,7 @@ Handle<Value> Shell::Load(const Arguments& args) {
|
| if (source.IsEmpty()) {
|
| return ThrowException(String::New("Error loading file"));
|
| }
|
| - if (!ExecuteString(source, String::New(*file), false, false)) {
|
| + if (!ExecuteString(source, String::New(*file), false, true)) {
|
| return ThrowException(String::New("Error executing file"));
|
| }
|
| }
|
| @@ -439,6 +439,7 @@ void Shell::ReportException(v8::TryCatch* try_catch) {
|
| printf("%s\n", stack_trace_string);
|
| }
|
| }
|
| + printf("\n");
|
| }
|
|
|
|
|
|
|