Is there a way to get elisp to automatically treat all numeric variables as floating points without having to repeatedly use the float
function?
For example to a division function that outputs the "true" quotient is
(defun divide ( x y )
(/ (float x) y))
But I'd rather not have so many float
functions floating around (even if, given the name, that's a part of the function's essence ;) ).