diff options
author | Remi Collet <remi@php.net> | 2014-06-23 10:04:40 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2014-06-23 10:21:19 +0200 |
commit | 0febafcfbe3e35f4a230430368ba931f19f8e957 (patch) | |
tree | 745cc1c42877f144a24f643dc80c9a5b940175c8 /sapi/phpdbg/phpdbg_prompt.c | |
parent | 53158f2c32c71bddbfaa390c0c4758bc98540946 (diff) | |
download | php-git-0febafcfbe3e35f4a230430368ba931f19f8e957.tar.gz |
Fix https://github.com/krakjoe/phpdbg/issues/91
Enable edit feature when build with libedit.
Notice: coloured prompt only enable with READLINE
Diffstat (limited to 'sapi/phpdbg/phpdbg_prompt.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_prompt.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c index 5379e77586..d91ef3f3f5 100644 --- a/sapi/phpdbg/phpdbg_prompt.c +++ b/sapi/phpdbg/phpdbg_prompt.c @@ -732,6 +732,11 @@ PHPDBG_COMMAND(print) /* {{{ */ #else phpdbg_writeln("Readline\tno"); #endif +#ifdef HAVE_LIBEDIT + phpdbg_writeln("Libedit\t\tyes"); +#else + phpdbg_writeln("Libedit\t\tno"); +#endif phpdbg_writeln("Exec\t\t%s", PHPDBG_G(exec) ? PHPDBG_G(exec) : "none"); phpdbg_writeln("Compiled\t%s", PHPDBG_G(ops) ? "yes" : "no"); |