mescc: No comments in M1 when running on Mes.
* module/language/c99/compiler.mes (ast-comment): If mes?, return nil.
This commit is contained in:
parent
5867ac4afe
commit
83549786ed
|
@ -774,8 +774,9 @@
|
|||
(wrap-as `((#:comment ,o))))
|
||||
|
||||
(define (ast->comment o)
|
||||
(let ((source (with-output-to-string (lambda () (pretty-print-c99 o)))))
|
||||
(make-comment (string-join (string-split source #\newline) " "))))
|
||||
(if mes? '()
|
||||
(let ((source (with-output-to-string (lambda () (pretty-print-c99 o)))))
|
||||
(make-comment (string-join (string-split source #\newline) " ")))))
|
||||
|
||||
(define (accu*n info n)
|
||||
(append-text info (wrap-as (case n
|
||||
|
|
Loading…
Reference in a new issue