aboutsummaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2014-11-03 14:40:38 -0500
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2014-11-03 14:40:38 -0500
commit6a9d48365f5044b64a6c270760808d17d475ca4b (patch)
treed612b2410fe9af333a79e524f5e5102f9754feed /command.c
parentb4d06df669e1eaf6c98cacb5c5f299bb5324e804 (diff)
parent204bec7af64c61489e37007d45de936482007977 (diff)
downloadegawk-6a9d48365f5044b64a6c270760808d17d475ca4b.tar.gz
egawk-6a9d48365f5044b64a6c270760808d17d475ca4b.tar.bz2
egawk-6a9d48365f5044b64a6c270760808d17d475ca4b.zip
Merge remote-tracking branch 'origin/master' into select
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/command.c b/command.c
index ad0dc372..2d4bc814 100644
--- a/command.c
+++ b/command.c
@@ -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 },
};