This commit is contained in:
krakjoe 2013-11-12 00:28:48 +00:00
commit 95d33c18a0
6 changed files with 130 additions and 3 deletions

View file

@ -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;
} /* }}} */