From: krakjoe Date: Tue, 12 Nov 2013 01:27:48 +0000 (+0000) Subject: ... X-Git-Tag: php-5.6.0alpha1~110^2~462 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8586a1b4cc6bae64812f51f7e75863352ebc5f5b;p=php ... --- diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index eb087e00b7..69c64a1bf4 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -220,7 +220,8 @@ static PHPDBG_COMMAND(print) /* {{{ */ printf("Exec\t\t%s\n", PHPDBG_G(exec) ? PHPDBG_G(exec) : "none"); printf("Compiled\t%s\n", PHPDBG_G(ops) ? "yes" : "no"); printf("Stepping\t%s\n", (PHPDBG_G(flags) & PHPDBG_IS_STEPPING) ? "on" : "off"); - + printf("Quietness\t%s\n", (PHPDBG_G(flags) & PHPDBG_IS_QUIET) ? "on" : "off"); + if (PHPDBG_G(ops)) { printf("Opcodes\t\t%d\n", PHPDBG_G(ops)->last);