Bill Allombert on Sat, 03 Aug 2024 01:57:31 +0200


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: New incompatibility with recent 2.16.1, with a prototype {str}*


On Fri, Aug 02, 2024 at 04:12:51PM -0700, Ilya Zakharevich wrote:
> I do not see this with the stable version:
> 
>   (16:08) gp > my(ll); error("See "#ll);
>     ***   this should be a small integer: my(ll);error("See "#ll);
>     ***                                                ^-----------

This is due to x# being the primorial of x now.

? "See"#
  ***   this should be a small integer: "See"#
  ***                                   ^------

Please do error("See ",#ll) instead.

Cheers,
Bill