diff --git a/ChangeLog.txt b/ChangeLog.txt index 4dc53f95d0..7da76cc486 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -7,6 +7,14 @@ Entries may not always be in chronological/commit order. See license at the end of file. */ +2017-09-22 17:39 UTC Viktor Szakats (vszakats users.noreply.github.com) + * src/compiler/hbcomp.c + ! revert an accidental sync with 3.4 resulting in .prg source + filenames being included in the compiled source only in debug mode. + It's now restored to have these at all times. + The comment typo in the same line remains synced. + Ref: https://groups.google.com/d/msg/harbour-devel/7c-EyPWxjfg/ei84cbsvAQAJ + 2017-09-18 17:15 UTC Viktor Szakats (vszakats users.noreply.github.com) * contrib/hbfimage/core.c ! fix merge mistake in 0caff16650eedfee8a48494efb213e79a51f5ff4 diff --git a/src/compiler/hbcomp.c b/src/compiler/hbcomp.c index 562c8c6896..810b1dd7a5 100644 --- a/src/compiler/hbcomp.c +++ b/src/compiler/hbcomp.c @@ -268,7 +268,7 @@ PHB_COMP hb_comp_new( void ) pComp->fAutoMemvarAssume = HB_FALSE; /* holds if undeclared variables are automatically assumed MEMVAR (-a)*/ pComp->fForceMemvars = HB_FALSE; /* holds if memvars are assumed when accessing undeclared variable (-v)*/ pComp->fDebugInfo = HB_FALSE; /* holds if generate debugger required info */ - pComp->fHideSource = ! pComp->fDebugInfo; /* do not store .prg file names in PCODE */ + pComp->fHideSource = HB_FALSE; /* do not store .prg file names in PCODE */ pComp->fNoStartUp = HB_FALSE; /* C code generation embed HB_FS_FIRST or not */ pComp->fCredits = HB_FALSE; /* print credits */ pComp->fBuildInfo = HB_FALSE; /* print build info */