mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
Merge branch 'master' of https://github.com/krakjoe/phpdbg
This commit is contained in:
commit
95d33c18a0
6 changed files with 130 additions and 3 deletions
|
@ -123,7 +123,6 @@ PHPDBG_HELP(quiet) /* {{{ */
|
|||
printf("Will silence OPLINE output, while\n");
|
||||
printf("\tphpdbg> quiet 0\n");
|
||||
printf("Will enable OPLINE output again\n");
|
||||
|
||||
return SUCCESS;
|
||||
} /* }}} */
|
||||
|
||||
|
@ -135,3 +134,11 @@ PHPDBG_HELP(back) /* {{{ */
|
|||
printf("Will limit the number of frames to 5, the default is no limit\n");
|
||||
return SUCCESS;
|
||||
} /* }}} */
|
||||
|
||||
PHPDBG_HELP(list) /* {{{ */
|
||||
{
|
||||
printf("The list command displays N line from current context file.\n");
|
||||
printf("\tphpdbg> list 2\n");
|
||||
printf("Will print next 2 lines from the current file\n");
|
||||
return SUCCESS;
|
||||
} /* }}} */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue