CVS commit: src/external/bsd/bc/dist

2024-10-12 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 12 17:56:45 UTC 2024 Modified Files: src/external/bsd/bc/dist: bc.1 Log Message: bc.1: fix spacing and a typo To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/external/bsd/bc/dist/bc.1 Please note that

CVS commit: src/external/bsd/bc/dist

2024-10-12 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sat Oct 12 17:56:45 UTC 2024 Modified Files: src/external/bsd/bc/dist: bc.1 Log Message: bc.1: fix spacing and a typo To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/external/bsd/bc/dist/bc.1 Please note that

CVS commit: src/external/bsd/bc/dist

2022-05-26 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Thu May 26 08:06:58 UTC 2022 Modified Files: src/external/bsd/bc/dist: bc.1 Log Message: Literal backslashes need to be quoted for roff. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/external/bsd/bc/dist/bc.

CVS commit: src/external/bsd/bc/dist

2022-05-26 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Thu May 26 08:06:58 UTC 2022 Modified Files: src/external/bsd/bc/dist: bc.1 Log Message: Literal backslashes need to be quoted for roff. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/external/bsd/bc/dist/bc.

Re: CVS commit: src/external/bsd/bc/dist

2017-04-10 Thread Phil Nelson
On Monday 10 April 2017 02:26:50 co...@sdf.org wrote: > -DIGIT [0-9A-F] > +DIGIT [0-9A-Z] > > Looks off, is that intended? $ ./bc ibase 10 obase 10 ibase = Z+1 ibase 36 1679615 obase = Z+1 obase 01 00 35 35 35 35 1Z36AQ16836 01 35 03 06 10 26 01 06 08 03 06 quit The real question is

Re: CVS commit: src/external/bsd/bc/dist

2017-04-10 Thread coypu
joerg mentions you can get around the dummy returns/breaks after bc_exit to quiet compiler warnings by tagging it dead

Re: CVS commit: src/external/bsd/bc/dist

2017-04-10 Thread coypu
Hi, -DIGIT [0-9A-F] +DIGIT [0-9A-Z] Looks off, is that intended? Thanks.