Menu

#165 Record Fields get wrong comment

v0.18Beta
open
TridenT
8
2012-07-18
2007-07-23
klatham
No

Record fields comments are moved down one line, the first field gets a 'no tag' comment.

This code:

{*=============================================================================
STRUCTURE: defines the rFieldPair variables for screen data

*}
r_ScreenFields = record
one, /// line one
two, /// line two
three, /// line three
four /// line four
: r_FieldPair;
end;

Documents like this:

| four | line three |
| one | #No TAG found in source code# |
| three | line two |
| two | line one |

Discussion

  • klatham

    klatham - 2007-07-24

    Logged In: YES
    user_id=1849523
    Originator: YES

    However, if the fields are individually qualified, like:
    ...
    one : r_FieldPair /// line one
    two : r_FieldPair /// line two
    ...
    it works fine.

    So the program seems to have trouble interpreting the comma separated list of type like fields as described in my initial bug report.

    klatham

     
  • TridenT

    TridenT - 2007-07-25

    Logged In: YES
    user_id=248829
    Originator: NO

    trouble interpreting the comma separated list of type like fields

    Yes, your analyse is right, bug will be fixed for next revision.
    Priority raised.
    Thanks for your help !

     

Anonymous
Anonymous

Add attachments
Cancel