From f783b45ac783d83e9268da20c8752672dcbe419c Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Mon, 18 May 2026 15:59:02 -0400 Subject: [PATCH] v0.8.0: use exported text-input symbols (remove :: access) --- org/channel-tui-state.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org/channel-tui-state.org b/org/channel-tui-state.org index b13cbc7..8a2e436 100644 --- a/org/channel-tui-state.org +++ b/org/channel-tui-state.org @@ -346,10 +346,10 @@ Adds any missing keys with defaults to handle saved themes from older versions." (cl-tty.input:text-input-value (st :text-input))) (defun input-insert-char (ch) - (cl-tty.input::text-input-insert (st :text-input) ch)) + (cl-tty.input:text-input-insert (st :text-input) ch)) (defun input-delete-char () - (cl-tty.input::text-input-backspace (st :text-input))) + (cl-tty.input:text-input-backspace (st :text-input))) (defun add-msg (role content &key gate-trace panel) (vector-push-extend (list :role role :content content :time (now) :gate-trace gate-trace :panel panel) (st :messages))