Skip to content

Commit de77094

Browse files
authoredMar 11, 2024··
Merge pull request #563 from DMClVG/master
Fix doc-str Guile
2 parents 20df0e0 + 7bb539b commit de77094

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed
 

‎fnl/conjure/client/guile/socket.fnl

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@
7878
(= "" (a.get-in msgs [1 :out])))
7979
(a.assoc-in msgs [1 :out] (.. comment-prefix "Empty result")))
8080

81-
(opts.on-result (str.join "\n" (format-message (a.last msgs))))
81+
(if opts.on-result
82+
(opts.on-result (str.join "\n" (format-message (a.last msgs)))))
8283
(a.run! display-result msgs))
8384
{:batch? true})))))
8485

‎lua/conjure/client/guile/socket.lua

+19-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.