From 8de21cb2e295751ec96e1a9b20ca79605cb252af Mon Sep 17 00:00:00 2001 From: krakjoe Date: Tue, 12 Nov 2013 01:31:51 +0000 Subject: [PATCH] [Not running] --- README.md | 2 -- phpdbg_prompt.c | 7 ++++++- 2 files changed, 6 insertions(+), 3 deletions(-) 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)) { -- 2.50.1