removed ' from command

This commit is contained in:
2026-08-12 15:56:13 +02:00
parent e861f1f706
commit 5319c0ce37
+2 -2
View File
@@ -24,9 +24,9 @@
(define-syntax git
(syntax-rules ()
((_ command b1 ...)
((hash-ref git-commands 'command
((hash-ref git-commands command
(λ ()
(error "Not a supported or recognized git command: " 'command)))
(error "Not a supported or recognized git command: " command)))
(list b1 ...)))
)
)