From 11c707d83657f2fd8347496d0959b27bdd454836 Mon Sep 17 00:00:00 2001 From: krakjoe Date: Sat, 19 Apr 2014 21:08:54 +0100 Subject: [PATCH] auto compile when execution context set --- phpdbg.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/phpdbg.c b/phpdbg.c index 213906a977..2c5b7960d5 100644 --- a/phpdbg.c +++ b/phpdbg.c @@ -929,7 +929,6 @@ phpdbg_main: step = 0; sapi_name = NULL; - while ((opt = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { switch (opt) { case 'r': @@ -1255,6 +1254,10 @@ phpdbg_main: phpdbg_welcome((cleaning > 0) TSRMLS_CC); } + if (PHPDBG_G(exec)) { + PHPDBG_COMMAND_HANDLER(compile)(NULL TSRMLS_CC); + } + /* initialize from file */ PHPDBG_G(flags) |= PHPDBG_IS_INITIALIZING; zend_try { -- 2.50.1