Преглед изворни кода

+ show whether a procedure or function is far in tprocdef.customprocname

git-svn-id: trunk@38725 -
nickysn пре 7 година
родитељ
комит
55386ba547
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      compiler/symdef.pas

+ 2 - 0
compiler/symdef.pas

@@ -5852,6 +5852,8 @@ implementation
         else if po_is_block in procoptions then
           s:=s+' is block';
         s:=s+';';
+        if po_far in procoptions then
+          s:=s+' far;';
         { forced calling convention? }
         if (po_hascallingconvention in procoptions) then
           s:=s+' '+ProcCallOptionStr[proccalloption]+';';