In *.data we have to add a final newline character to ensure that the compiler does not complain.

This commit is contained in:
Juan Jose Garcia Ripoll 2013-04-14 21:47:17 +02:00
parent 03a38affeb
commit c603e57ef3

View file

@ -115,7 +115,9 @@
(let ((strings (produce-strings)))
(if strings
(output-c-strings strings stream)
(princ "#define compiler_data_text NULL" stream))))))
(princ "#define compiler_data_text NULL" stream))
;; Ensure a final newline or some compilers complain
(terpri stream)))))
(defun data-empty-loc ()
(add-object 0 :duplicate t :permanent t))