1
0
Fork 0
mirror of https://github.com/Reuh/candran.git synced 2025-10-27 09:59:29 +00:00

Fixed source file reporting in error messages including existing comments

This commit is contained in:
Étienne Fildadut 2019-04-05 20:21:31 +02:00
parent aa945f9fd7
commit ea19956f45
2 changed files with 2 additions and 2 deletions

View file

@ -241,7 +241,7 @@ function candran.messageHandler(message)
for l in originalFile:gmatch("([^\n]*)") do
i = i +1
if i == line then
local extSource, lineMap = l:match("%-%- ([^:]-)%:(%d+)$")
local extSource, lineMap = l:match(".*%-%- (.-)%:(%d+)$")
if lineMap then
if extSource ~= source then
return indentation .. extSource .. ":" .. lineMap .. "(" .. extSource .. ":" .. line .. "):"