diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-29 22:50:17 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-29 22:50:17 +0300 |
commit | abcfb997622f9b65c9f142b178648bbda83acdf1 (patch) | |
tree | 24d87a464a1ea5f52ec395fed5e68b89bf03ce2d /command.c | |
parent | 9701514d4ad1152da564ebf6690c514becd4339a (diff) | |
parent | 1086474bc51fc31e15d72df27b529b1015cd33aa (diff) | |
download | egawk-abcfb997622f9b65c9f142b178648bbda83acdf1.tar.gz egawk-abcfb997622f9b65c9f142b178648bbda83acdf1.tar.bz2 egawk-abcfb997622f9b65c9f142b178648bbda83acdf1.zip |
Merge branch 'master' into comment
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2648,6 +2648,8 @@ struct cmdtoken cmdtab[] = { gettext_noop("up [N] - move N frames up the stack.") }, { "watch", "w", D_watch, D_WATCH, do_watch, gettext_noop("watch var - set a watchpoint for a variable.") }, +{ "where", "", D_backtrace, D_BACKTRACE, do_backtrace, + gettext_noop("where [N] - (same as backtrace) print trace of all or N innermost (outermost if N < 0) frames.") }, { NULL, NULL, D_illegal, 0, (Func_cmd) 0, NULL }, }; |