From 3450e79ce2e22b607ccf047caa70a0ac9fa1d89a Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 6 Dec 2019 10:55:45 +0000 Subject: [PATCH] * Merging revisions 43481 from trunk: ------------------------------------------------------------------------ r43481 | michael | 2019-11-15 16:37:58 +0100 (Fri, 15 Nov 2019) | 1 line * Fix overflow of compiler messages (bug id 27973) ------------------------------------------------------------------------ git-svn-id: branches/fixes_3_2@43660 - --- compiler/utils/msg2inc.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/utils/msg2inc.pp b/compiler/utils/msg2inc.pp index f10171fb4a..07327caeca 100644 --- a/compiler/utils/msg2inc.pp +++ b/compiler/utils/msg2inc.pp @@ -714,7 +714,7 @@ begin end; if s[i+k]='_' then inc(i,k+1); - writeln(t,'\item ['+s1+escapestring(Copy(s,i,255))+']'); + writeln(t,'\item ['+s1+escapestring(Copy(s,i,255))+'] \hfill \\'); end else writeln('error in line: ',line,' skipping');