aboutsummaryrefslogtreecommitdiff
path: root/contrib/bc/manuals/dc/EH.1
Commit message (Collapse)AuthorAgeFilesLines
* vendor/bc: upgrade to version 6.7.4Stefan Eßer2024-01-101-40/+6
| | | | | | Documentation updates only, no functional changes to the software. (cherry picked from commit a3f3a7b4dc80d577e4c8fc64dfbbb359d2e24228)
* vendor/bc: import version 6.3.1Stefan Eßer2023-02-241-5/+7
| | | | | | | This version adds a command to dc to query whether extended registers are enabled or not. (cherry picked from commit 61e1a12bb6c3bfdb0a4e499c88e8eaa2b548e427)
* contrib/bc: uodate to version 6.2.4Stefan Eßer2023-02-061-2/+2
| | | | | | | | This update contains only documentation changes (new main repository URL and changed mail address of the program author) and changes to the build system that do not affect the FreeBSD base system build. MFC after: 3 days
* contrib/bc: merge from vendor release 6.2.2Stefan Eßer2023-01-281-91/+205
| | | | | | | | | | | | | 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-13/+47
| | | | | | | | | | | | | | | | | 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-0/+13
| | | | Merge commit 'e63540eed295749528548c2e3a90f5a6e57275c8'
* contrib/bc: merge version 5.1.0 from vendor branchStefan Eßer2021-10-041-0/+45
| | | | | | | | | | 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'
* usr.bin/ghä-bc, contrib/bc: update to version 5.0.0Stefan Eßer2021-08-131-722/+665
| | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4 This is a new major release with a number of changes and extensions: - Limited the number of temporary numbers and made the space for them static so that allocating more space for them cannot fail. - Allowed integers with non-zero scale to be used with power, places, and shift operators. - Added greatest common divisor and least common multiple to lib2.bc. - Made bc and dc UTF-8 capable. - Added the ability for users to have bc and dc quit on SIGINT. - Added the ability for users to disable prompt and TTY mode by environment variables. - Added the ability for users to redefine keywords. - Added dc's modular exponentiation and divmod to bc. - Added the ability to assign strings to variables and array elements and pass them to functions in bc. - Added dc's asciify command and stream printing to bc. - Added bitwise and, or, xor, left shift, right shift, reverse, left rotate, right rotate, and mod functions to lib2.bc. - Added the functions s2u(x) and s2un(x,n), to lib2.bc. MFC after: 1 week
* Merge commit '7a590c074ceede12b2b6e794f8703d6fa5749918'Stefan Eßer2021-04-061-498/+699
| | | | | | | | | | | | | | | Update to version 4.0.0 This version fixes an issue (missing pop of top-of-stack value in the "P" command of the dc program). This issue did not affect the bc program, since it does not use dc as an back-end to actually perform the calculations as was the case with the traditional bc and dc programs. The major number has been bumped due to Windows support that has been added to this version. It does not correspond to a major change that might affect FreeBSD.
* bc: Vendor import new version 3.3.3Stefan Eßer2021-03-051-27/+26
|
* Upgrade to version 3.3.0Stefan Eßer2021-02-171-7/+20
| | | | | | | | | | | This update changes the behavior of "-e" or "-f" in BC_ENV_ARGS: Use of these options on the command line makes bc exit after executing the given commands. These options will not cause bc to exit when passed via the environment (but EOF in STDIN or -e or -f on the command line will make bc exit as before). The same applies to DC_ENV_ARGS with regard to the dc program.
* Merge commit '47a52dc4d48f259ab7d9f9ba6b65f4f2331a22dc'Stefan Eßer2021-01-311-2/+2
| | | | | | Update to version 3.2.6 MFC after: 3 days
* Update to version 3.2.0Stefan Eßer2020-11-261-512/+439
| | | | Notes: svn path=/head/; revision=368072
* Upgrade to version 3.1.4Stefan Eßer2020-08-031-8/+9
| | | | | | | | | | | This version omits the printing of a copyright header in interactive mode and the dc command now exits after execution of the commands passed via -e or -f instead of switching to interactive mode. To pass further commands via STDIN when dc has been invoked with -e or -f, add "-f -" to the parameter list. Notes: svn path=/head/; revision=363810
* Update to version 3.1.1Stefan Eßer2020-07-071-0/+1187
This version fixes a regression with regard to tradtional behavior of the non-standard FreeBSD option "-e". In the previous version "-e quit" caused bc to exit before any computations had been performed, since all -e option parameters were concatenated and parsed as a whole, with quit causing the program to exit as soon as it was parsed. This version parses and executes commands passed with -e one by one and only exits after all prior commands have been executed. This commit is not a SVN merge, since the vendor import had been performed after the import to contrib. Instead the contents of contrib/bc has been removed and the new version is copied over unchanged from vendor/bc/dist. Notes: svn path=/head/; revision=362987