Skip to content

Commit 77cb82d

Browse files
committed
Merge branch 'master' of github.com:krakjoe/phpdbg
2 parents 8ec5d30 + 8de21cb commit 77cb82d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
The interactive PHP debugger
22
============================
33

4-
phpdbg is an interactive debugger for PHP.
5-
64
Implemented as a SAPI module, phpdbg can excerpt complete control over the environment without impacting the functionality or performance of your code.
75

86
phpdbg aims to be a lightweight, easy to use debugging platform for PHP5.5+

phpdbg_prompt.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,13 @@ int phpdbg_interactive(TSRMLS_D) /* {{{ */
567567
}
568568
break;
569569

570-
case PHPDBG_NEXT:
570+
case PHPDBG_NEXT: {
571+
if (!EG(in_execution)) {
572+
printf("[Not running]\n");
573+
}
571574
return PHPDBG_NEXT;
575+
}
576+
572577

573578
}
574579
} else if (PHPDBG_G(last)) {

0 commit comments

Comments
 (0)