diff options
author | Antony Dovgal <tony2001@php.net> | 2007-06-04 09:47:54 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-06-04 09:47:54 +0000 |
commit | 3285bd834b859357bb1320e26d3361b7ba4bfc62 (patch) | |
tree | d25b4b612b749ed22e0207e9c4f07098b8ad3dfd /sapi/cli/php_cli_readline.c | |
parent | 61d697d10091ab1eeee317b79470535a59481bdf (diff) | |
download | php-git-3285bd834b859357bb1320e26d3361b7ba4bfc62.tar.gz |
fix folding
Diffstat (limited to 'sapi/cli/php_cli_readline.c')
-rw-r--r-- | sapi/cli/php_cli_readline.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sapi/cli/php_cli_readline.c b/sapi/cli/php_cli_readline.c index 8d442a7d41..fffc6d07f3 100644 --- a/sapi/cli/php_cli_readline.c +++ b/sapi/cli/php_cli_readline.c @@ -59,8 +59,6 @@ #include "zend_highlight.h" #include "zend_indent.h" -/* {{{ cli_is_valid_code - */ typedef enum { body, sstring, @@ -74,7 +72,7 @@ typedef enum { outside, } php_code_type; -int cli_is_valid_code(char *code, int len, char **prompt TSRMLS_DC) +int cli_is_valid_code(char *code, int len, char **prompt TSRMLS_DC) /* {{{ */ { int valid_end = 1, last_valid_end; int brackets_count = 0; @@ -430,9 +428,7 @@ TODO: return retval; } /* }}} */ -/* {{{ cli_code_completion - */ -char **cli_code_completion(const char *text, int start, int end) +char **cli_code_completion(const char *text, int start, int end) /* {{{ */ { return rl_completion_matches(text, cli_completion_generator); } |