summaryrefslogtreecommitdiff
path: root/phpdbg_help.c
diff options
context:
space:
mode:
authorkrakjoe <joe.watkins@live.co.uk>2013-11-25 17:41:09 +0000
committerkrakjoe <joe.watkins@live.co.uk>2013-11-25 17:41:09 +0000
commita947c890a03ce5a6f6065ce17823b0678f2c7b8c (patch)
treeda964eb52b86ba53471bb52d781a6edc2448aad5 /phpdbg_help.c
parent3d6a4cbc634db0e056f92cb3c9f7eedbd93da209 (diff)
downloadphp-git-a947c890a03ce5a6f6065ce17823b0678f2c7b8c.tar.gz
add source export functionality, only files working, buggy source
Diffstat (limited to 'phpdbg_help.c')
-rw-r--r--phpdbg_help.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/phpdbg_help.c b/phpdbg_help.c
index fe621fb818..2dc4577fba 100644
--- a/phpdbg_help.c
+++ b/phpdbg_help.c
@@ -505,11 +505,15 @@ PHPDBG_HELP(source) /* {{{ */
{
phpdbg_help_header();
phpdbg_writeln("Sourcing a phpdbginit during your debugging session might save some time");
+ phpdbg_writeln("The source command can also be used to export breakpoints to a phpdbginit file");
phpdbg_writeln(EMPTY);
phpdbg_notice("Examples");
- phpdbg_writeln("\t%ssource /my/phpdbginit", PROMPT);
- phpdbg_writeln("\t%s. /my/phpdbginit", PROMPT);
- phpdbg_writeln("\tWill execute the init file at /my/phpdbginit");
+ phpdbg_writeln("\t%ssource /my/init", PROMPT);
+ phpdbg_writeln("\t%s. /my/init", PROMPT);
+ phpdbg_writeln("\tWill execute the phpdbginit file at /my/init");
+ phpdbg_writeln("\t%ssource export /my/init", PROMPT);
+ phpdbg_writeln("\t%s. export /my/init", PROMPT);
+ phpdbg_writeln("\tWill export breakpoints to /my/init in phpdbginit file format");
phpdbg_help_footer();
return SUCCESS;
} /* }}} */