Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: b728918b483f9049ab74984ee11e359e8a769b08
      
https://github.com/Perl/perl5/commit/b728918b483f9049ab74984ee11e359e8a769b08
  Author: TAKAI Kousuke <[email protected]>
  Date:   2020-12-07 (Mon, 07 Dec 2020)

  Changed paths:
    M t/base/num.t
    M toke.c

  Log Message:
  -----------
  toke.c: Recognize "0odddd" octal literals.

t/base/num.t: Add some test for "0odddd" octals.


  Commit: 8ea1bb76772cbd78b5a9256d3b8507848e7bb2ec
      
https://github.com/Perl/perl5/commit/8ea1bb76772cbd78b5a9256d3b8507848e7bb2ec
  Author: TAKAI Kousuke <[email protected]>
  Date:   2020-12-07 (Mon, 07 Dec 2020)

  Changed paths:
    M toke.c

  Log Message:
  -----------
  toke.c: Preserve "0o" prefix on warnings and strings passed to overload hook.


  Commit: b15e443511c11c1f196c5a5ca57b89feed452a07
      
https://github.com/Perl/perl5/commit/b15e443511c11c1f196c5a5ca57b89feed452a07
  Author: TAKAI Kousuke <[email protected]>
  Date:   2020-12-07 (Mon, 07 Dec 2020)

  Changed paths:
    M toke.c

  Log Message:
  -----------
  toke.c: Eliminate temporary variables base, Base and max.

These variables are only used on emitting diagnostic messages.
Calculating them on-demand will make the code slightly faster
on normal cases.

Note: previously bases[], Bases[] and maxima[] may be completely
optimized out by fusing array accesses into if-brances.
Now they become real arrays, and will slightly increase the number
of dynamic relocations on PIC build.


  Commit: c279f3d0680f86f0de539f6491362e428af4fbd0
      
https://github.com/Perl/perl5/commit/c279f3d0680f86f0de539f6491362e428af4fbd0
  Author: TAKAI Kousuke <[email protected]>
  Date:   2020-12-07 (Mon, 07 Dec 2020)

  Changed paths:
    M pp.c
    M t/op/oct.t

  Log Message:
  -----------
  pp.c: oct() now skips "0o" and "o" prefix.

t/op/oct.t: Add test for oct() with 0o and o prefix.


  Commit: d5619dbd8347f4ba2d4abf09870735a05bafdb79
      
https://github.com/Perl/perl5/commit/d5619dbd8347f4ba2d4abf09870735a05bafdb79
  Author: TAKAI Kousuke <[email protected]>
  Date:   2020-12-07 (Mon, 07 Dec 2020)

  Changed paths:
    M pod/perldata.pod

  Log Message:
  -----------
  perldata.pod: mention new octal integer format (0o12_345).


  Commit: cdaf905248c79cede67400333383fafe6db30255
      
https://github.com/Perl/perl5/commit/cdaf905248c79cede67400333383fafe6db30255
  Author: TAKAI Kousuke <[email protected]>
  Date:   2020-12-07 (Mon, 07 Dec 2020)

  Changed paths:
    M pod/perlfunc.pod

  Log Message:
  -----------
  perlfunc.pod: add a description for octal strings for oct()

These sentences are borrowed from the description for hex().


  Commit: 54e31e2485e0fb4822dfa38ac496790a2d877f3c
      
https://github.com/Perl/perl5/commit/54e31e2485e0fb4822dfa38ac496790a2d877f3c
  Author: TAKAI Kousuke <[email protected]>
  Date:   2020-12-07 (Mon, 07 Dec 2020)

  Changed paths:
    M pod/perldelta.pod

  Log Message:
  -----------
  perldelta.pod: Document new "0o" octal syntax.


Compare: https://github.com/Perl/perl5/compare/53443c95ef3b...54e31e2485e0

Reply via email to