From eb99847ccdb2146d83bc0e4d150b8162ddc236a7 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Mon, 4 May 2026 11:44:31 -0400 Subject: [PATCH] fix: system-config.org paren balance (missing defun close) --- lisp/system-config.lisp | 6 +++--- org/system-config.org | 8 +++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/lisp/system-config.lisp b/lisp/system-config.lisp index 4bc4a5f..123b499 100644 --- a/lisp/system-config.lisp +++ b/lisp/system-config.lisp @@ -148,9 +148,9 @@ (if (> (length key) 0) (progn (config-set env-key key) (format t "✓ ~a API key saved~%" chosen)) - (format t "Skipping ~a — no key entered.~%" chosen)))))))) - - (format t "~%")) + (format t "Skipping ~a — no key entered.~%" chosen)))))))) + + (format t "~%"))) (defun setup-add-provider () "Entry point for adding a single provider (called from CLI)." diff --git a/org/system-config.org b/org/system-config.org index 70e4b97..99f00f4 100644 --- a/org/system-config.org +++ b/org/system-config.org @@ -225,9 +225,11 @@ These are shown inline when the user runs the setup wizard, so they know what th (if (> (length key) 0) (progn (config-set env-key key) (format t "✓ ~a API key saved~%" chosen)) - (format t "Skipping ~a — no key entered.~%" chosen)))))))) - - (format t "~%")) + (format t "Skipping ~a — no key entered.~%" chosen)))))))) + + (format t "~%"))) + + #+end_src