Parcourir la Source

Fix whitespace issues from automated editing

Lucas Stadler 9 ans auparavant
Parent
commit
47ce035485
1 fichiers modifiés avec 3 ajouts et 6 suppressions
  1. 3 6
      c/ton/main.c

+ 3 - 6
c/ton/main.c

@ -430,8 +430,7 @@ int main(int argc, char **argv) {
430 430
		arguments[3] = JSValueMakeBoolean(ctx, static_fns);
431 431
		JSValueRef ex = NULL;
432 432
		JSObjectCallAsFunction(ctx, get_function(ctx, "planck.repl", "init"), JSContextGetGlobalObject(ctx), 4, arguments, &ex);
433
		debug_print_value
434
	("planck.repl/init", ctx, ex);
433
		debug_print_value("planck.repl/init", ctx, ex);
435 434
	}
436 435
437 436
	if (repl) {
@ -500,8 +499,7 @@ JSValueRef evaluate_script(JSContextRef ctx, char *script, char *source) {
500 499
		JSStringRelease(source_ref);
501 500
	}
502 501
503
	debug_print_value
504
("evaluate_script", ctx, ex);
502
	debug_print_value("evaluate_script", ctx, ex);
505 503
506 504
	return val;
507 505
}
@ -590,8 +588,7 @@ JSValueRef evaluate_source(JSContextRef ctx, char *type, char *source, bool expr
590 588
	JSValueRef ex = NULL;
591 589
	JSValueRef val = JSObjectCallAsFunction(ctx, execute_fn, global_obj, num_args, args, &ex);
592 590
593
	debug_print_value
594
("planck.repl/execute", ctx, ex);
591
	debug_print_value("planck.repl/execute", ctx, ex);
595 592
596 593
	return ex != NULL ? ex : val;
597 594
}