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.
This commit is contained in:
2026-05-18 14:34:55 -04:00
parent 05aec4d028
commit b1aafc56b2

View File

@@ -251,7 +251,7 @@ and current sidebar mode (:auto/:visible/:hidden)."
(ctx-x (- hint-x 1 (length ctx-str)))) (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 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 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 #+end_src
** Sidebar ** Sidebar