]> granicus.if.org Git - php/commitdiff
more help
authorkrakjoe <joe.watkins@live.co.uk>
Tue, 12 Nov 2013 03:02:42 +0000 (03:02 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Tue, 12 Nov 2013 03:02:42 +0000 (03:02 +0000)
phpdbg_help.c
phpdbg_help.h

index eb5982648c6b0a41f671f471b69619914e416777..d942ebeb611172b09f7b79e6d1c5367ac7736bca 100644 (file)
@@ -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;
 } /* }}} */
index ba79747a5ad49c331c599b95abc65ebd601a1030..9c89f3dcae2508b4d17036f102bcc0fcf2c82c15 100644 (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(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}
 };