From c3f5006c86c05ab8369da1a7c006776f50595a36 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Sun, 19 Apr 2020 21:11:37 +0000 Subject: [PATCH] Merged revision(s) 43769 from trunk: * fixed output of line numbers/columns with -vR ........ git-svn-id: branches/fixes_3_2@44874 - --- compiler/comphook.pas | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/comphook.pas b/compiler/comphook.pas index 288902b044..6dffea8ff1 100644 --- a/compiler/comphook.pas +++ b/compiler/comphook.pas @@ -305,8 +305,7 @@ begin if status.currentcolumn>0 then begin if status.use_gccoutput then - hs:=gccfilename(status.currentsource)+':'+tostr(status.currentline)+': '+hs+' '+ - tostr(status.currentcolumn)+': '+s + hs:=gccfilename(status.currentsource)+':'+tostr(status.currentline)+':'+tostr(status.currentcolumn)+': '+hs+' '+s else begin hs:=status.currentsource+'('+tostr(status.currentline)+