Subject: | Issue using both Smart Comments and Inline Files |
I am using Inline::Files version 0.62 and Smart::Comments version 1.01 to write a helper script. Perl version 5.8.4 on Debian Linux Sarge kernel 2.4.27-2-386. I am using the debian packaged Perl version. I am not sure which module is causing the following bug/feature, or if it is something else, but when both modules are used only one works. The second one listed is the one that works. Ie
...
use Smart::Comments;
use Inline::Files;
...
Causes all smart comments to disappear where as
...
use Inline::Files;
use Smart::Comments;
...
Causes things like <MY_INLINE_FILE> not to be open.
Since both are done with source filters I guess that is where the issue is coming from. And I realize this may not be fixable, though I don't pretend to understand source filter magic. I would like to use both modules though while developing :)
John