From 3097c36f3042fe3f49d80eed810197036f94ab66 Mon Sep 17 00:00:00 2001 From: krakjoe Date: Tue, 12 Nov 2013 03:02:42 +0000 Subject: [PATCH] more help --- phpdbg_help.c | 1 + phpdbg_help.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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} }; -- 2.50.1