mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Delimit defprimitive section
This commit is contained in:
parent
8e40505015
commit
1d3968664f
1 changed files with 3 additions and 1 deletions
4
cgen.scm
4
cgen.scm
|
@ -1058,6 +1058,7 @@
|
|||
(close-output-port fp)))
|
||||
|
||||
(define (autogen:defprimitives fp)
|
||||
(display "/* This section is auto-generated via --autogen */\n" fp)
|
||||
(for-each
|
||||
(lambda (p)
|
||||
(display
|
||||
|
@ -1068,7 +1069,8 @@
|
|||
(symbol->string p)
|
||||
" */\n")
|
||||
fp))
|
||||
*primitives*))
|
||||
*primitives*)
|
||||
(display "/* -------------------------------------------- */\n" fp))
|
||||
|
||||
;; List of primitive procedures
|
||||
(define (autogen:primitive-procedures fp)
|
||||
|
|
Loading…
Add table
Reference in a new issue