pp.c: Simplify lc and uc stringification code
authorFather Chrysostomos <sprout@cpan.org>
Wed, 1 Jan 2014 14:06:30 +0000 (06:06 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 1 Jan 2014 16:22:41 +0000 (08:22 -0800)
commit841a5e1869a65f80379c03832eaf9887546a9622
treee7c982206678fddd09f7889143b5fcdbc0765180
parent6006ebd02a4b62ba7535f6398bbb2d33a9ef46cc
pp.c: Simplify lc and uc stringification code

Originally, lc and uc would not warn about undef, due to an implemen-
tation detail.

The implementation changed in 673061948, and extra code was added to
keep the behaviour the same.

Commit 0a0ffbced enabled the warnings about undef, but did so by added
even more code in the midst of the blocks that existed solely to avoid
the warning.

We can just delete those blocks and put in a simple stringification.
pp.c