fix(tui): correct vector-push-extend argument count
Some checks failed
Deploy-Agent-V15-Stdin / JOB-V15-STDIN (push) Failing after 2s

This commit is contained in:
2026-04-27 19:07:07 -04:00
parent 43986fda9c
commit 215fe0eae7

View File

@@ -40,7 +40,7 @@ The OpenCortex TUI Client is a standalone Common Lisp application built on **Cro
(when (and cmd (> (length cmd) 0))
(unless (and (> (length *command-history*) 0)
(string= cmd (aref *command-history* (1- (length *command-history*)))))
(vector-push-extend cmd *command-history* :adjustable t))
(vector-push-extend cmd *command-history*))
(setf *history-index* (length *command-history*))))
(defun history-previous ()