We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d75f12f commit e28f36fCopy full SHA for e28f36f
fnl/conjure/client/common-lisp/swank.fnl
@@ -184,8 +184,7 @@
184
(set opened-quote false)
185
(table.insert
186
vals
187
- (string.char
188
- (unpack stack)))
+ (str.join (a.map string.char stack)))
189
(set stack []))
190
(when escaped
191
;; if we've escaped this quote, put it in.
lua/conjure/client/common-lisp/swank.lua
@@ -170,7 +170,7 @@ local function parse_separated_list(string_to_parse)
170
if opened_quote then
171
if not escaped then
172
opened_quote = false
173
- table.insert(vals, string.char(unpack(stack)))
+ table.insert(vals, str.join(a.map(string.char, stack)))
174
stack = {}
175
else
176
end
0 commit comments