From d91b9f7d46489a9ee00f9cb415630299c76a502b Mon Sep 17 00:00:00 2001 From: Leon Clarke Date: Wed, 27 Jan 2010 17:25:45 +0000 Subject: Merge from v8 at revision 3723 --- samples/lineprocessor.cc | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'samples') diff --git a/samples/lineprocessor.cc b/samples/lineprocessor.cc index 2e8092ee..505dabf9 100644 --- a/samples/lineprocessor.cc +++ b/samples/lineprocessor.cc @@ -134,7 +134,7 @@ int RunMain(int argc, char* argv[]) { int port_number = -1; bool wait_for_connection = false; - bool support_callback = true; + bool support_callback = false; MainCycleType cycle_type = CycleInCpp; for (int i = 1; i < argc; i++) { @@ -144,9 +144,7 @@ int RunMain(int argc, char* argv[]) { // alone JavaScript engines. continue; } else if (strcmp(str, "--callback") == 0) { - // TODO(548): implement this. - printf("Error: debugger agent callback is not supported yet.\n"); - return 1; + support_callback = true; } else if (strcmp(str, "--wait-for-connection") == 0) { wait_for_connection = true; } else if (strcmp(str, "--main-cycle-in-cpp") == 0) { @@ -410,7 +408,7 @@ v8::Handle ReadLine() { char* res; { v8::Unlocker unlocker; - res = fgets(buffer, buffer_size, stdin); + res = fgets(buffer, kBufferSize, stdin); } if (res == NULL) { v8::Handle t = v8::Undefined(); -- cgit v1.2.3