Skip to content

Commit 3097c36

Browse files
committed
more help
1 parent ed690e1 commit 3097c36

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

phpdbg_help.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,6 @@ PHPDBG_HELP(list) /* {{{ */
142142
printf("Will print next 2 lines from the current file\n");
143143
printf("\tphpdbg> list func\n");
144144
printf("Will print func source code\n");
145+
printf("Note: before listing functions you must have a populated function table, try compile !!\n");
145146
return SUCCESS;
146147
} /* }}} */

phpdbg_help.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ static const phpdbg_command_t phpdbg_help_commands[] = {
6464
PHPDBG_HELP_D(clear, "clearing breakpoints allows you to run code without interruption"),
6565
PHPDBG_HELP_D(back, "show debug backtrace information during execution"),
6666
PHPDBG_HELP_D(quiet, "be quiet during execution"),
67-
PHPDBG_HELP_D(list, "list specified line or function"),
67+
PHPDBG_HELP_D(list, "listing code gives you quick access to code while executing"),
6868
{NULL, 0, 0}
6969
};
7070

0 commit comments

Comments
 (0)