From ed7cbc2bb9f06c4734acbc4bb1c7ff06499d5707 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 2 Oct 2024 15:10:33 +0100 Subject: command-line-tool: Embed int value into G-expression. * ravanan/command-line-tool.scm (command-line-binding->args): Embed int value into G-expression instead of evaluating it immediately. --- ravanan/command-line-tool.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ravanan/command-line-tool.scm b/ravanan/command-line-tool.scm index 65b001e..9e70a86 100644 --- a/ravanan/command-line-tool.scm +++ b/ravanan/command-line-tool.scm @@ -372,7 +372,7 @@ in which the G-expressions are inserted." ((string) value) ((int) - (number->string value)) + #~(number->string #$value)) ((File) #~(assoc-ref* #$value "path")) (else -- cgit v1.2.3