From 8833e41e377aec25b57df6c30b70ebee1e78c8df Mon Sep 17 00:00:00 2001 From: Julian Hurst Date: Fri, 21 Mar 2025 19:25:10 +0100 Subject: il: remove error prints --- cmd/il.ha | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cmd/il.ha b/cmd/il.ha index b6d1efb..74b4e76 100644 --- a/cmd/il.ha +++ b/cmd/il.ha @@ -63,19 +63,11 @@ export fn main() void = { }; if (r == 'd') { const nextpage = li.cursor + li.frame.end - li.frame.start; - fmt::errorln(nextpage)!; list::setcursor(&li, nextpage); - fmt::errorln(li.frame.start)!; - fmt::errorln(li.frame.end)!; - fmt::errorln()!; }; if (r == 'u') { const prevpage = li.cursor - (li.frame.end - li.frame.start); - fmt::errorln(prevpage)!; list::setcursor(&li, prevpage); - fmt::errorln(li.frame.start)!; - fmt::errorln(li.frame.end)!; - fmt::errorln()!; }; if (r == 'g') { list::top(&li); -- cgit v1.2.3