From: krakjoe Date: Tue, 12 Nov 2013 03:02:42 +0000 (+0000) Subject: more help X-Git-Tag: php-5.6.0alpha1~110^2~449 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3097c36f3042fe3f49d80eed810197036f94ab66;p=php more help --- diff --git a/phpdbg_help.c b/phpdbg_help.c index eb5982648c..d942ebeb61 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -142,5 +142,6 @@ PHPDBG_HELP(list) /* {{{ */ printf("Will print next 2 lines from the current file\n"); printf("\tphpdbg> list func\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; } /* }}} */ diff --git a/phpdbg_help.h b/phpdbg_help.h index ba79747a5a..9c89f3dcae 100644 --- a/phpdbg_help.h +++ b/phpdbg_help.h @@ -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(back, "show debug backtrace information 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} };