Re: Quick config/auto/pack.pm Question

2008-02-12 Thread Ron Blaschke
James E Keenan wrote: Ron Blaschke wrote: l is documented as: l A signed long (32-bit) value. I'm not expert in this, so let me ask: Where is this documented other than 'perldoc -f pack'? Yes, that's where it's documented. Am I missing something obvious here? Ron

Quick config/auto/pack.pm Question

2008-02-11 Thread Ron Blaschke
I noticed the following in pack.pm. sub _set_ptrconst { my ($conf, $ptrsize, $intsize, $longsize) = @_; if ( $intsize == $ptrsize ) { $conf-data-set( ptrconst = u ); } elsif ( $longsize == $ptrsize ) { $conf-data-set( ptrconst = ul ); } else { warn

Re: Quick config/auto/pack.pm Question

2008-02-11 Thread James E Keenan
Ron Blaschke wrote: l is documented as: l A signed long (32-bit) value. I'm not expert in this, so let me ask: Where is this documented other than 'perldoc -f pack'? kid51 (... who refactored the code cited into subroutines but didn't come up with it in the first place.)