mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 13:05:05 +02:00
Add missing semicolon
This commit is contained in:
parent
fc39cacbb3
commit
9df5665dab
1 changed files with 1 additions and 1 deletions
|
@ -2191,7 +2191,7 @@
|
||||||
(loop (cons (string-append "make_pair(" (car cs) ", &" (car ps) ", &" (cadr cs) ");\n") code)
|
(loop (cons (string-append "make_pair(" (car cs) ", &" (car ps) ", &" (cadr cs) ");\n") code)
|
||||||
(cdr ps)
|
(cdr ps)
|
||||||
(cdr cs)))))
|
(cdr cs)))))
|
||||||
(emit* "object buf[1]; object cont = args[0]");
|
(emit* "object buf[1]; object cont = args[0];");
|
||||||
(if head-pair
|
(if head-pair
|
||||||
(emit* "buf[0] = &" head-pair "; (((closure)cont)->fn)(data, cont, 1, buf);")
|
(emit* "buf[0] = &" head-pair "; (((closure)cont)->fn)(data, cont, 1, buf);")
|
||||||
(emit* "buf[0] = NULL; (((closure)cont)->fn)(data, cont 1, buf);"))
|
(emit* "buf[0] = NULL; (((closure)cont)->fn)(data, cont 1, buf);"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue