From fa22b47cf007744bd0bd43a234df919dadfe6adc Mon Sep 17 00:00:00 2001 From: sof Date: Wed, 11 Jul 2001 22:47:32 +0000 Subject: [PATCH] [project @ 2001-07-11 22:47:32 by sof] Append final newline to _stub.{c,h} output --- ghc/compiler/main/CodeOutput.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/main/CodeOutput.lhs b/ghc/compiler/main/CodeOutput.lhs index df6337d..f100d57 100644 --- a/ghc/compiler/main/CodeOutput.lhs +++ b/ghc/compiler/main/CodeOutput.lhs @@ -220,7 +220,7 @@ outputForeignStubs dflags c_code h_code -- turn out to be empty, in which case no file should be created. outputForeignStubs_help fname "" injects = return False outputForeignStubs_help fname doc_str injects - = do writeFile fname (injects ++ doc_str) + = do writeFile fname (injects ++ doc_str ++ "\n") return True \end{code} -- 1.7.10.4