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
This commit is contained in:
Viktor Szakats
2017-09-22 17:42:01 +00:00
parent b962600fe2
commit 29c1b00f55
2 changed files with 9 additions and 1 deletions

View File

@@ -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

View File

@@ -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 */