mescc: bugfix: arg as function call.

* module/language/c99/compiler.mes (expr->arg):
This commit is contained in:
Jan Nieuwenhuizen 2017-01-21 13:17:24 +01:00
parent 61e14e6e24
commit 452b231645

View file

@ -221,7 +221,8 @@
;; f (car (x)) ;; f (car (x))
((fctn-call . ,call) ((fctn-call . ,call)
(let ((info ((ast->info info) o))) (let* ((empty (clone info #:text '()))
(info ((ast->info empty) o)))
(append (.text info) (append (.text info)
(list (list
(lambda (f g t d) (lambda (f g t d)