Branch: refs/heads/yves/ws_cleanup_headers Home: https://github.com/Perl/perl5 Commit: 4918bc00fffeab15afb2964426180ae6bdc1bc90 https://github.com/Perl/perl5/commit/4918bc00fffeab15afb2964426180ae6bdc1bc90 Author: Yves Orton <demer...@gmail.com> Date: 2022-09-01 (Thu, 01 Sep 2022)
Changed paths: M perl.h Log Message: ----------- perl.h - remove duplicated code from commented explanation Commit: 59428bc6707d914b9e21ad889fbdbd70708327c7 https://github.com/Perl/perl5/commit/59428bc6707d914b9e21ad889fbdbd70708327c7 Author: Yves Orton <demer...@gmail.com> Date: 2022-09-01 (Thu, 01 Sep 2022) Changed paths: M intrpvar.h Log Message: ----------- intrpvar.h - change "char * *" into "char **" Uniformity in such things is good. Commit: 1e98b4a8187010a309f3ba7d8f60e31668e9d4c6 https://github.com/Perl/perl5/commit/1e98b4a8187010a309f3ba7d8f60e31668e9d4c6 Author: Yves Orton <demer...@gmail.com> Date: 2022-09-01 (Thu, 01 Sep 2022) Changed paths: M intrpvar.h Log Message: ----------- intrpvar.h - move size declaration to a define so it can be reused and so the PERLVAR() lines up better. Commit: 8d1eda40ad2a2253f52d5d30055d95847f52e1c6 https://github.com/Perl/perl5/commit/8d1eda40ad2a2253f52d5d30055d95847f52e1c6 Author: Yves Orton <demer...@gmail.com> Date: 2022-09-01 (Thu, 01 Sep 2022) Changed paths: M perlvars.h Log Message: ----------- perlvars.h - move length computation to a define So it can be reused if necessary, and so the very long expression doesn't cause the line to be very long. Commit: b723ee50698e7c6cfa7eac23a39d0b7791faacad https://github.com/Perl/perl5/commit/b723ee50698e7c6cfa7eac23a39d0b7791faacad Author: Yves Orton <demer...@gmail.com> Date: 2022-09-01 (Thu, 01 Sep 2022) Changed paths: M regexp.h Log Message: ----------- regexp.h - move semicolon to be before the comment. This is the only struct in our manually maintained files where there is a comment in front of the semicolon instead of after it. Commit: 5757f66fab732fa435234fde7a24599a52e474d5 https://github.com/Perl/perl5/commit/5757f66fab732fa435234fde7a24599a52e474d5 Author: Yves Orton <demer...@gmail.com> Date: 2022-09-01 (Thu, 01 Sep 2022) Changed paths: M EXTERN.h M INTERN.h M XSUB.h M av.h M cop.h M cv.h M dosish.h M fakesdio.h M form.h M gv.h M handy.h M hv.h M hv_func.h M hv_macro.h M inline.h M intrpvar.h M invlist_inline.h M iperlsys.h M malloc_ctl.h M mg.h M mydtrace.h M nostdio.h M op.h M op_reg_common.h M pad.h M parser.h M perl.h M perl_inc_macro.h M perl_langinfo.h M perl_siphash.h M perlio.h M perliol.h M perlvars.h M pp.h M regcomp.h M regexp.h M sbox32_hash.h M scope.h M sv.h M sv_inline.h M thread.h M time64.h M time64_config.h M uconfig.h M unixish.h M utf8.h M utfebcdic.h M util.h M vutil.h M zaphod32_hash.h Log Message: ----------- *.h - Standardize format, whitespace cleanup only View this patch with -w and it should show no changes at all. This reformats our manually maintained header files. All defines are lined up. All structs are given a standardized format. All multiline macros are given consistent escaped newlines positions. Where things are lined up we use P95 of the length, so very long things do not cause massive indents, so a few long entries may not line up. Compare: https://github.com/Perl/perl5/compare/4918bc00fffe%5E...5757f66fab73