- Added "list func" support

This commit is contained in:
Felipe Pena 2013-11-12 00:19:43 -02:00
parent 77cb82dd22
commit e32d511cec
8 changed files with 118 additions and 28 deletions

View file

@ -140,5 +140,7 @@ PHPDBG_HELP(list) /* {{{ */
printf("The list command displays N line from current context file.\n");
printf("\tphpdbg> list 2\n");
printf("Will print next 2 lines from the current file\n");
printf("\tphpdbg> list func\n");
printf("Will print func source code\n");
return SUCCESS;
} /* }}} */