From 215fe0eae7b6d04c3c21f3b445f3aeb4b56bc0c7 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Mon, 27 Apr 2026 19:07:07 -0400 Subject: [PATCH] fix(tui): correct vector-push-extend argument count --- harness/tui-client.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harness/tui-client.org b/harness/tui-client.org index 7760aa9..cf1b5c1 100644 --- a/harness/tui-client.org +++ b/harness/tui-client.org @@ -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 ()