Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [photran] RE: [photran-announce] Photran 4.0 beta 3 now available

And does it just rename instances of a symbol in the current source
file? It ignored instances of this common block variable in other source

Forgot to answer this. It does rename module entities across files. Common blocks are tricky, since you can have pathological cases like "common /x/ a, b" in file #1 and "common /x/ b, a" in file #2, where a in #1 is identical to b in #2 and b in #1 is identical to a in #2. So, currently, you have to rename each declaration of a common block individually. I agree that it would make sense to (have an option to) rename all instances of the common block all at ones, assuming their variables have the same names in the same order with the same types and kinds, since this is the most common (and most sane) case.

Jeff


Back to the top