This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c: Remove unused data structure field
authorKarl Williamson <public@khwilliamson.com>
Wed, 13 Feb 2013 22:13:04 +0000 (15:13 -0700)
committerKarl Williamson <public@khwilliamson.com>
Thu, 4 Jul 2013 01:21:17 +0000 (19:21 -0600)
commit4b98096221966ea01c046f4f61b2dc4f60b534b9
treec858cf62e8cc9e4897b18ef68684be9bfe3c5c00
parent2c3365de8c1168f115576a4976d067e3b911c490
regcomp.c: Remove unused data structure field

This removes a field that is set in the inversion list data structure
and examined just once.  And that sole examiner is the function that
calls the function that does the set.  In other words X calls Y passing
it data D.  Y puts D into a structure.  Upon return from Y, X looks for
D in the structure.  No one else looks at D.  X might just as well have
looked at D directly, without involving Y, and without the structure
needing a space for D.
embed.fnc
embed.h
proto.h
regcomp.c