From b1aafc56b26c9e34848a1e27eabec3c1827cb5d4 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Mon, 18 May 2026 14:34:55 -0400 Subject: [PATCH] v0.8.0: fix extra close paren in view-input, balance check Discovered and fixed an extra close parenthesis on the hint bar's last draw-text line that caused a compile error. --- org/channel-tui-view.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/channel-tui-view.org b/org/channel-tui-view.org index cede7ab..e5d96ee 100644 --- a/org/channel-tui-view.org +++ b/org/channel-tui-view.org @@ -251,7 +251,7 @@ and current sidebar mode (:auto/:visible/:hidden)." (ctx-x (- hint-x 1 (length ctx-str)))) (cl-tty.backend:draw-text fb hpad (- h 2) left-str hint-fg (theme-color :bg)) (cl-tty.backend:draw-text fb ctx-x (- h 2) ctx-str ctx-fg (theme-color :bg)) - (cl-tty.backend:draw-text fb hint-x (- h 2) hint-str hint-fg (theme-color :bg)))))) + (cl-tty.backend:draw-text fb hint-x (- h 2) hint-str hint-fg (theme-color :bg))))) #+end_src ** Sidebar