aboutsummaryrefslogtreecommitdiff
path: root/handlers.ha
diff options
context:
space:
mode:
Diffstat (limited to 'handlers.ha')
-rw-r--r--handlers.ha11
1 files changed, 0 insertions, 11 deletions
diff --git a/handlers.ha b/handlers.ha
index c50e454..2e7609f 100644
--- a/handlers.ha
+++ b/handlers.ha
@@ -194,16 +194,5 @@ fn runehandler(l: *widget::widget, r: libtui::key) bool = {
fmt::fprintln(os::stderr, "newline")!;
};
};
- libtui::clear(l.widget.ui);
- match (list::print(l)) {
- case void =>
- yield;
- case let e: io::error =>
- fmt::fprintln(os::stderr, io::strerror(e))!;
- return true;
- case let e: tty::error =>
- fmt::fprintln(os::stderr, tty::strerror(e))!;
- return true;
- };
return false;
};