From e04192699c9c25df7222f2386f5467cd27e09aa6 Mon Sep 17 00:00:00 2001 From: Zeex Date: Tue, 5 Aug 2014 00:03:59 +0700 Subject: [PATCH] Fix #file directive not adding files to debug info --- source/compiler/sc2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/compiler/sc2.c b/source/compiler/sc2.c index eac9ed2..17f5327 100644 --- a/source/compiler/sc2.c +++ b/source/compiler/sc2.c @@ -1015,6 +1015,7 @@ static int command(void) inpfname=duplicatestring(pathname); if (inpfname==NULL) error(103); /* insufficient memory */ + insert_dbgfile(inpfname); } /* if */ } /* if */ check_empty(lptr);