From 9e0d4f9ef1cd4d7149c84475df5cef4d408743b6 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 19 Sep 2010 11:49:21 +0200 Subject: * lisp/emacs-lisp/float-sup.el (float-pi): New name for `pi'. (float-e): New name for `e'. (degrees-to-radians, radians-to-degrees): * lisp/calendar/solar.el (solar-longitude): * lisp/calculator.el (calculator-registers, calculator-funcall): * lisp/textmodes/artist.el (artist-spray-random-points): * lisp/play/bubbles.el (bubbles--initialize-images): Use new names. --- lisp/play/bubbles.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/play') diff --git a/lisp/play/bubbles.el b/lisp/play/bubbles.el index 91968b02bc8..69620aeaca2 100644 --- a/lisp/play/bubbles.el +++ b/lisp/play/bubbles.el @@ -1377,7 +1377,7 @@ Return t if new char is non-empty." (g (nth 1 crgb)) (b (nth 2 crgb)) (brightness (/ (+ r g b) 3.0 256 256)) - (val (sin (* brightness (/ pi 2)))) + (val (sin (* brightness (/ float-pi 2)))) (rr (* red val)) (gg (* green val)) (bb (* blue val)) -- cgit v1.2.1