We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9744f8d commit e4fd2cfCopy full SHA for e4fd2cf
lisp/emacs-lisp/float-sup.el
@@ -28,8 +28,9 @@
28
;; Provide an easy hook to tell if we are running with floats or not.
29
;; Define pi and e via math-lib calls (much less prone to killer typos).
30
(defconst float-pi (* 4 (atan 1)) "The value of Pi (3.1415926...).")
31
-(defconst pi float-pi
32
- "Obsolete since Emacs-23.3. Use `float-pi' instead.")
+(with-suppressed-warnings ((lexical pi))
+ (defconst pi float-pi
33
+ "Obsolete since Emacs-23.3. Use `float-pi' instead."))
34
(internal-make-var-non-special 'pi)
35
36
(defconst float-e (exp 1) "The value of e (2.7182818...).")
0 commit comments