From 22d65c5931d702f6e2abde9b3b7d822b8d3c5560 Mon Sep 17 00:00:00 2001 From: xleroy Date: Tue, 18 Aug 2009 06:31:17 +0000 Subject: No '\n' in Coq strings... git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1129 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- cfrontend/Cshmgen.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cfrontend/Cshmgen.v') diff --git a/cfrontend/Cshmgen.v b/cfrontend/Cshmgen.v index 55860ef6..acce971f 100644 --- a/cfrontend/Cshmgen.v +++ b/cfrontend/Cshmgen.v @@ -604,7 +604,7 @@ with transl_lbl_stmt (nbrk ncnt: nat) (sl: Csyntax.labeled_statements) (*** Translation of functions *) Definition prefix_var_name (id: ident) : errmsg := - MSG "In local variable " :: CTX id :: MSG ":\n" :: nil. + MSG "In local variable " :: CTX id :: MSG ": " :: nil. Definition transl_params (l: list (ident * type)) := AST.map_partial prefix_var_name chunk_of_type l. -- cgit