From: krakjoe Date: Tue, 12 Nov 2013 01:31:51 +0000 (+0000) Subject: [Not running] X-Git-Tag: php-5.6.0alpha1~110^2~461 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8de21cb2e295751ec96e1a9b20ca79605cb252af;p=php [Not running] --- diff --git a/README.md b/README.md index dcfd3317d2..580538f20e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ The interactive PHP debugger ============================ -phpdbg is an interactive debugger for PHP. - Implemented as a SAPI module, phpdbg can excerpt complete control over the environment without impacting the functionality or performance of your code. phpdbg aims to be a lightweight, easy to use debugging platform for PHP5.5+ diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index 69c64a1bf4..9565ee61e8 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -567,8 +567,13 @@ int phpdbg_interactive(TSRMLS_D) /* {{{ */ } break; - case PHPDBG_NEXT: + case PHPDBG_NEXT: { + if (!EG(in_execution)) { + printf("[Not running]\n"); + } return PHPDBG_NEXT; + } + } } else if (PHPDBG_G(last)) {