Commit:    6932eb76e3631e5e8e12e1545d152a3b8567297c
Author:    krakjoe <joe.watk...@live.co.uk>         Mon, 25 Nov 2013 18:39:27 
+0000
Parents:   754fe822161a929ba17c8aba72029bdb6d46236e
Branches:  PHP-5.6

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=6932eb76e3631e5e8e12e1545d152a3b8567297c

Log:
correction in help

Changed paths:
  M  phpdbg_bp.c
  M  phpdbg_help.c


Diff:
diff --git a/phpdbg_bp.c b/phpdbg_bp.c
index de9b90d..afd0be0 100644
--- a/phpdbg_bp.c
+++ b/phpdbg_bp.c
@@ -66,7 +66,6 @@ PHPDBG_API void phpdbg_export_breakpoints(FILE *handle 
TSRMLS_DC) /* {{{ */
                                phpdbg_notice(
                                        "Exporting file breakpoints in %s 
(%d)", brake->filename, count);
 
-                               fprintf(handle, "# Breakpoints in %s (%d)\n", 
brake->filename, count);
                                do {
                                        fprintf(handle, "break file %s:%lu\n", 
brake->filename, brake->line);
                                } while ((brake = 
zend_llist_get_next_ex(brakes, &lposition)));
diff --git a/phpdbg_help.c b/phpdbg_help.c
index 227f841..c9598a7 100644
--- a/phpdbg_help.c
+++ b/phpdbg_help.c
@@ -221,7 +221,7 @@ PHPDBG_HELP(break) /* {{{ */
        phpdbg_writeln(EMPTY);
        phpdbg_notice("Examples");
        phpdbg_writeln("\t%sbreak [file] test.php:1", 
phpdbg_get_prompt(TSRMLS_C));
-       phpdbg_writeln("\t%sb [f] test.php:1", phpdbg_get_prompt(TSRMLS_C));
+       phpdbg_writeln("\t%sb [F] test.php:1", phpdbg_get_prompt(TSRMLS_C));
        phpdbg_writeln("\tWill break execution on line 1 of test.php");
        phpdbg_writeln(EMPTY);
        phpdbg_writeln("\t%sbreak [func] my_function", 
phpdbg_get_prompt(TSRMLS_C));


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to