From 2ef327caed5e7cb2683c040904a57d0cc6be1e5d Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Tue, 20 Oct 2015 21:56:00 +0200 Subject: Exempt paging from -qrr mode --- sapi/phpdbg/phpdbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sapi/phpdbg/phpdbg.c') diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index a82292ac5a..1fda4b7cb7 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -1845,7 +1845,7 @@ phpdbg_interact: quit_immediately = phpdbg_startup_run > 1; phpdbg_startup_run = 0; if (quit_immediately) { - PHPDBG_G(flags) |= PHPDBG_IS_INTERACTIVE | PHPDBG_PREVENT_INTERACTIVE; + PHPDBG_G(flags) = (PHPDBG_G(flags) & ~PHPDBG_HAS_PAGINATION) | PHPDBG_IS_INTERACTIVE | PHPDBG_PREVENT_INTERACTIVE; } else { PHPDBG_G(flags) |= PHPDBG_IS_INTERACTIVE; } -- cgit v1.2.1