[Done] The Procedure Help line comment not shown

TailBite specific forum

Moderators: gnozal, ABBKlaus, lexvictory

User avatar
Bisonte
Addict
Addict
Posts: 1226
Joined: Tue Oct 09, 2007 2:15 am

[Done] The Procedure Help line comment not shown

Post by Bisonte »

Hi.

If I made a comment like

Code: Select all

ProcedureDll MyProc(var) ; This is my proc
It's not displayed in IDE-Statusbar anymore...
Only

Code: Select all

MyProc(var)
after "tailbiting" it.

Is this a tailbite issue or IDE issue ?
PureBasic 6.04 LTS (Windows x86/x64) | Windows10 Pro x64 | Asus TUF X570 Gaming Plus | R9 5900X | 64GB RAM | GeForce RTX 3080 TI iChill X4 | HAF XF Evo | build by vannicom​​
English is not my native language... (I often use DeepL to translate my texts.)
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: The Procedure Help line comment not shown

Post by ABBKlaus »

Hello Bisonte,

its a compiler issue in PB5.10.

@Fred : can this be reenabled with a Compiler Switch ?

PB5.00 code :

Code: Select all

; 
; CompilerIf Defined(PurePDF_Include,#PB_Constant)
;#######################
;# TailBite / DLL-code #
;#######################
; ProcedureDLL.l pdf_AcceptPageBreak() ;Accept automatic page break or not
macro MP330{
_Procedure330:
  PS330=4
  CALL  _SYS_CheckStringBuffer@0                                                                                                                                                                                                                   
; ProcedureReturn ipdf_AcceptPageBreak()
  CALL  _Procedure228
  JMP   _EndProcedure331
; EndProcedure
  XOR    eax,eax
_EndProcedure331:
  RET
}
; 
; ProcedureDLL.l pdf_Addlink() ;Creates a new internal link and returns its identifier.
PB5.10 code :

Code: Select all

; 
; CompilerIf Defined(PurePDF_Include,#PB_Constant)
; 
; 
; 
; ProcedureDLL.l pdf_AcceptPageBreak() 
macro MP330{
_Procedure330:
  PS330=4
  CALL  _SYS_CheckStringBuffer@0                                                                                                                                                                                                                   
; ProcedureReturn ipdf_AcceptPageBreak()
  CALL  _Procedure228
  JMP   _EndProcedure331
; EndProcedure
  XOR    eax,eax
_EndProcedure331:
  RET
}
; 
; ProcedureDLL.l pdf_Addlink() 
gnozal
PureBasic Expert
PureBasic Expert
Posts: 4229
Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:

Re: The Procedure Help line comment not shown

Post by gnozal »

I have uploaded a quick and dirty fix : http://gnozal.ucoz.com/Tailbite_PB510.rar (compile with PB < 5.10)

Tailbite is searching for the 'Quick help' in the PB source file... works on a few examples.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
User avatar
Bisonte
Addict
Addict
Posts: 1226
Joined: Tue Oct 09, 2007 2:15 am

Re: The Procedure Help line comment not shown

Post by Bisonte »

thx I will check it out...

Edit:
Thanks. That works.
PureBasic 6.04 LTS (Windows x86/x64) | Windows10 Pro x64 | Asus TUF X570 Gaming Plus | R9 5900X | 64GB RAM | GeForce RTX 3080 TI iChill X4 | HAF XF Evo | build by vannicom​​
English is not my native language... (I often use DeepL to translate my texts.)
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: The Procedure Help line comment not shown

Post by ABBKlaus »

Thanks gnozal, i fixed that issue too.

Please have a look at the sources, its a bit different than yours :P

http://www.tailbite.com/downloads/TailBiteV1.4.9.zip

BR Klaus
gnozal
PureBasic Expert
PureBasic Expert
Posts: 4229
Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:

Re: [Done] The Procedure Help line comment not shown

Post by gnozal »

Many thanks, Klaus.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Post Reply