about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2026-06-20 11:04:58 +0100
committerArun Isaac2026-06-20 11:04:58 +0100
commitac0715673488be9dbc1cdc131198a78b4556e6ee (patch)
tree1330c333746aa979f85324658b447ced6f421f3f
parentf96a98d04ee459256ee768332cd1896efd57b231 (diff)
downloadccwl-ac0715673488be9dbc1cdc131198a78b4556e6ee.tar.gz
ccwl-ac0715673488be9dbc1cdc131198a78b4556e6ee.tar.lz
ccwl-ac0715673488be9dbc1cdc131198a78b4556e6ee.zip
scripts: Prefer let to let*.
-rwxr-xr-xscripts/ccwl12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/ccwl b/scripts/ccwl
index ce1dfd1..3f8ab9b 100755
--- a/scripts/ccwl
+++ b/scripts/ccwl
@@ -118,12 +118,12 @@ Thank you!
     (lambda ()
       (match args
         ((program "compile" args ...)
-         (let* ((args (args-fold args
-                                 %options
-                                 invalid-option
-                                 (lambda (arg result)
-                                   (acons 'source-file arg result))
-                                 '((to . cwl)))))
+         (let ((args (args-fold args
+                                %options
+                                invalid-option
+                                (lambda (arg result)
+                                  (acons 'source-file arg result))
+                                '((to . cwl)))))
            (when (or (assq 'help args)
                      (not (assq-ref args 'source-file)))
              (display (format "Usage: ~a compile [OPTIONS] SOURCE-FILE