]> git.eshelyaron.com Git - emacs.git/commit
Calc: allow infinite binary word size (bug#43764)
authorMattias Engdegård <mattiase@acm.org>
Sat, 10 Oct 2020 16:02:49 +0000 (18:02 +0200)
committerMattias Engdegård <mattiase@acm.org>
Tue, 13 Oct 2020 09:29:01 +0000 (11:29 +0200)
commitcf407958886e46881216a510efebb8bc029de50c
tree2f67e4b672f10355ad941a39abd58b6c523a3683
parentadd1314195b193f04164cebe558d7a185b61de96
Calc: allow infinite binary word size (bug#43764)

Setting the word size ("b w") to 0 removes the word size clipping for
all bit operations (effectively as if a word size of -∞ had been set).
Rotation is disallowed; logical and arithmetic shifts behave
identically.

After a suggestion by Vincent Belaïche.

* lisp/calc/calc-bin.el (calc-word-size, math-binary-arg)
(math-binary-modulo-args, calcFunc-lsh, calcFunc-ash, calcFunc-rot)
(math-clip, math-format-twos-complement): Allow a word size of 0,
meaning -∞.
* test/lisp/calc/calc-tests.el
(calc-tests--not, calc-tests--and, calc-tests--or, calc-tests--xor)
(calc-tests--diff): New functions.
(calc-tests--clip, calc-tests--rot, calc-shift-binary): Extend to
cover word size 0.
(calc-bit-ops): New test.
* doc/misc/calc.texi (Binary Functions): Update manual.
* etc/NEWS: Announce the change.
doc/misc/calc.texi
etc/NEWS
lisp/calc/calc-bin.el
test/lisp/calc/calc-tests.el