aboutsummaryrefslogtreecommitdiff
path: root/bb.c
diff options
context:
space:
mode:
Diffstat (limited to 'bb.c')
-rw-r--r--bb.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/bb.c b/bb.c
index d71d595..aa412fe 100644
--- a/bb.c
+++ b/bb.c
@@ -619,12 +619,6 @@ void run_bbcmd(bb_t *bb, const char *cmd)
set_bool(bb->show_dotfiles);
setenv("BBDOTFILES", bb->show_dotfiles ? "1" : "", 1);
populate_files(bb, bb->path);
- } else if (matches_cmd(cmd, "execute:")) { // +execute:
- move_cursor(tty_out, 0, termheight-1);
- fputs("\033[K", tty_out);
- restore_term(&default_termios);
- run_script(bb, value);
- init_term();
} else if (matches_cmd(cmd, "fg:") || matches_cmd(cmd, "fg")) { // +fg:
int fg = value ? nprocs - (int)strtol(value, NULL, 10) : 0;
proc_t *child = NULL;