This commit is contained in:
krakjoe 2013-11-12 16:13:14 +00:00
parent b6f5b64c61
commit 6b3b14e8dd
2 changed files with 1 additions and 2 deletions

View File

@ -112,6 +112,6 @@ ZEND_END_MODULE_GLOBALS(phpdbg)
((PHPDBG_G(flags) & PHPDBG_IS_COLOURED) ? "\033[1;64mphpdbg>\033[0m " : "phpdbg> ") ((PHPDBG_G(flags) & PHPDBG_IS_COLOURED) ? "\033[1;64mphpdbg>\033[0m " : "phpdbg> ")
#define PHPDBG_SEP_LINE(TSRMLS_D) do {\ #define PHPDBG_SEP_LINE(TSRMLS_D) do {\
printf("%s--------------------------------------%s\n", PHPDBG_BOLD_LINE(TSRMLS_C), PHPDBG_END_LINE(TSRMLS_C));\ printf("%s--------------------------------------%s\n", PHPDBG_BOLD_LINE(TSRMLS_C), PHPDBG_END_LINE(TSRMLS_C));\
} while(0) /* }}} */ } while(0) /* }}} */
#endif /* PHPDBG_H */ #endif /* PHPDBG_H */

View File

@ -89,7 +89,6 @@ PHPDBG_HELP(eval) /* {{{ */
PHPDBG_HELP(break) /* {{{ */ PHPDBG_HELP(break) /* {{{ */
{ {
printf("Setting a breakpoint stops execution at a specific stage.\n"); printf("Setting a breakpoint stops execution at a specific stage.\n");
printf("\n");
printf("For example:\n"); printf("For example:\n");
printf("\t%sbreak test.php:1\n", PHPDBG_PROMPT_LINE(TSRMLS_C)); printf("\t%sbreak test.php:1\n", PHPDBG_PROMPT_LINE(TSRMLS_C));
printf("Will break execution on line 1 of test.php\n"); printf("Will break execution on line 1 of test.php\n");