aboutsummaryrefslogtreecommitdiff
path: root/contrib/bc/vs
Commit message (Collapse)AuthorAgeFilesLines
* contrib/bc upgrade to version 7.1.0Stefan Eßer2025-09-114-8/+0
| | | | | | | | | | | This update fixes a few bugs: - Improper response to double SIGINT with editline. - Not letting libedit handle terminal size changes. - A dc crash from improperly handling an error. - A duplicate check for reference arrays. - Build failures with GCC 15. Merge commit '682da5a0fdb2c38ecc3951047a882471d62aa1d1'
* vendor/bc: upgrade to version 7.0.0Stefan Eßer2024-08-261-9/+9
| | | | | | | | | | | | | | | | | | | | This is a production release to fix three bugs, none of which affects well formed scripts on FreeBSD: The first bug is that bc/dc will exit on macOS when the terminal is resized. The second bug is that an array, which should only be a function parameter, was accepted as part of larger expressions. The third bug is that the value stack for dc was cleared on any error. However, this is not how other dc behave. To bring dc more in line with other implementations, this behavior was changed. This change is why this version is a new major version. (cherry picked from commit 54d20d67e2af28d948ce2df13feb039fa10900fc) MFC after: 3 days
* vendor/bc: upgrade to version 6.7.5Stefan Eßer2024-01-102-0/+10
| | | | | | | | This update fixes a bug that line breaks in printed numbers may not match the line length set by the user. The value is printed correctly, just not split as specified in some situations. (cherry picked from commit 52a5ec1b178fd07651446c7e31b1512794a04dbf)
* vendor/bc: import version 6.3.1Stefan Eßer2023-02-241-1/+1
| | | | | | | This version adds a command to dc to query whether extended registers are enabled or not. (cherry picked from commit 61e1a12bb6c3bfdb0a4e499c88e8eaa2b548e427)
* contrib/bc: merge from vendor release 6.2.2Stefan Eßer2023-01-281-8/+8
| | | | | | | | | | | | | This update fixes a few issues in history editing and the processing of the "quit" function. The "quit" function will no longer cause bc to exit when encountered in a script file (before any command from the script has been executed). New functions is_number(), is_string return 1 if the passed argument is a number resp. a string. The asciify() function has been extended to support the conversion of an array of numbers into a string. Merge commit '1a63323d17fedb05b6962853e821c9d7c6b9853e'
* usr.bin/bc: update to version 5.3.1Stefan Eßer2022-06-111-20/+21
| | | | | | | | | | | | | | | | | This version adds support for command line editing and history using the libedit or readline libraries in addition to the line editing features available in previous versions. The version in the base system is configured to use libedit. This allows to choose between emacs and vi line editing commands and to use command overrides via a ~/.editrc file. Merge commit 'bd54318046bfee055b140705a5cfd4148e78da07' PR: 264010 MFC after: 2 weeks
* contrib/bc: merge version 5.2.1 from vendor branchStefan Eßer2021-11-301-4/+4
| | | | Merge commit 'e63540eed295749528548c2e3a90f5a6e57275c8'
* contrib/bc: update to version 5.1.1Stefan Eßer2021-10-062-0/+0
| | | | Merge commit '6f49f5cdde1c62c4e5a743e895f3afe592b5c0e5'
* contrib/bc: merge version 5.1.0 from vendor branchStefan Eßer2021-10-0410-0/+1052
This version adds options and functions that allow to print numbers in the open interval (-1 .. 1) with or without a leading 0 digit. Additionally, an option has been added to prevent line wrap and allows to print arbitrarily long results on a single line. Merge commit '5d58a51571721190681c50d4bd3a1f45e6282d72'