diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-12-18 11:53:30 +0100 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-12-18 11:53:30 +0100 |
commit | e5263aa3f0c9138cfeb1241f296e1404b705b904 (patch) | |
tree | ace5368a51ac9c4d21ac851035924724488ff4de /phpdbg_cmd.c | |
parent | 7e0d1938f9e875a96284c217f28a2e7a1995539d (diff) | |
download | php-git-e5263aa3f0c9138cfeb1241f296e1404b705b904.tar.gz |
In english, no horizontal space before “!”.
Diffstat (limited to 'phpdbg_cmd.c')
-rw-r--r-- | phpdbg_cmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpdbg_cmd.c b/phpdbg_cmd.c index 15fb33ffd3..9f052d6f6f 100644 --- a/phpdbg_cmd.c +++ b/phpdbg_cmd.c @@ -472,7 +472,7 @@ PHPDBG_API phpdbg_input_t *phpdbg_read_input(char *buffered TSRMLS_DC) /* {{{ */ if ((!(PHPDBG_G(flags) & PHPDBG_IS_REMOTE) && !phpdbg_write(phpdbg_get_prompt(TSRMLS_C))) || !fgets(buf, PHPDBG_MAX_CMD, PHPDBG_G(io)[PHPDBG_STDIN])) { /* the user has gone away */ - phpdbg_error("Failed to read console !"); + phpdbg_error("Failed to read console!"); PHPDBG_G(flags) |= (PHPDBG_IS_QUITTING|PHPDBG_IS_DISCONNECTED); zend_bailout(); return NULL; @@ -489,7 +489,7 @@ PHPDBG_API phpdbg_input_t *phpdbg_read_input(char *buffered TSRMLS_DC) /* {{{ */ if (!cmd) { /* the user has gone away */ - phpdbg_error("Failed to read console !"); + phpdbg_error("Failed to read console!"); PHPDBG_G(flags) |= (PHPDBG_IS_QUITTING|PHPDBG_IS_DISCONNECTED); zend_bailout(); return NULL; @@ -646,7 +646,7 @@ PHPDBG_API int phpdbg_do_cmd(const phpdbg_command_t *command, phpdbg_input_t *in rc = command->handler(¶m, input TSRMLS_CC); - /* only set last command when it is worth it ! */ + /* only set last command when it is worth it! */ if ((rc != FAILURE) && !(PHPDBG_G(flags) & PHPDBG_IS_INITIALIZING)) { PHPDBG_G(lcmd) = (phpdbg_command_t*) command; @@ -661,7 +661,7 @@ PHPDBG_API int phpdbg_do_cmd(const phpdbg_command_t *command, phpdbg_input_t *in } else { /* this should NEVER happen */ phpdbg_error( - "No function executed !!"); + "No function executed!!"); } return rc; |