more help

This commit is contained in:
krakjoe 2013-11-12 03:02:42 +00:00
parent ed690e1899
commit 3097c36f30
2 changed files with 2 additions and 1 deletions

View file

@ -142,5 +142,6 @@ PHPDBG_HELP(list) /* {{{ */
printf("Will print next 2 lines from the current file\n"); printf("Will print next 2 lines from the current file\n");
printf("\tphpdbg> list func\n"); printf("\tphpdbg> list func\n");
printf("Will print func source code\n"); printf("Will print func source code\n");
printf("Note: before listing functions you must have a populated function table, try compile !!\n");
return SUCCESS; return SUCCESS;
} /* }}} */ } /* }}} */

View file

@ -64,7 +64,7 @@ static const phpdbg_command_t phpdbg_help_commands[] = {
PHPDBG_HELP_D(clear, "clearing breakpoints allows you to run code without interruption"), PHPDBG_HELP_D(clear, "clearing breakpoints allows you to run code without interruption"),
PHPDBG_HELP_D(back, "show debug backtrace information during execution"), PHPDBG_HELP_D(back, "show debug backtrace information during execution"),
PHPDBG_HELP_D(quiet, "be quiet during execution"), PHPDBG_HELP_D(quiet, "be quiet during execution"),
PHPDBG_HELP_D(list, "list specified line or function"), PHPDBG_HELP_D(list, "listing code gives you quick access to code while executing"),
{NULL, 0, 0} {NULL, 0, 0}
}; };