Hey folks, I run into the following behaviour when using calc in Emacs 27.1 (using `emacs -Q'): --8<---------------cut here---------------start------------->8--- (calc-eval "123.0") ; => "123." (calc-eval "0.0") ; => "0." --8<---------------cut here---------------end--------------->8--- I would expect this output to be either "123.0" or "123" and "0.0" or "0" respectively. I have attached a super simple patch that fixes this issue for me, but I am not actually certain of the following: - Was this formatting quirk perhaps there with a purpose? - Does my 'fix' have unintended consequences? Thanks, Jelle