bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#40892: 26.3; emacs calculator.el: return values are truncated intege


From: Andreas Schwab
Subject: bug#40892: 26.3; emacs calculator.el: return values are truncated integers
Date: Mon, 27 Apr 2020 10:14:09 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.91 (gnu/linux)

On Apr 27 2020, Aitor Soroa wrote:

> The calculator.el: wrongly returns integers. For instance:
>
> emacs -Q
> M-x calculator
> 22 / 7
>
> The answer is '3'. Even worse, If I set calculator-remove-zeros to nil,
> then I get '3.000'

This is consistent with how Emacs Lisp works:

ELISP> (/ 22 7)
3 (#o3, #x3, ?\C-c)
ELISP> (/ 22 7.0)
3.142857142857143

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
"And now for something completely different."





reply via email to

[Prev in Thread] Current Thread [Next in Thread]