emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r101651: * lisp/emacs-lisp/float-sup.


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101651: * lisp/emacs-lisp/float-sup.el (e): Remove.
Date: Mon, 27 Sep 2010 22:11:33 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101651
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Mon 2010-09-27 22:11:33 +0200
message:
  * lisp/emacs-lisp/float-sup.el (e): Remove.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/float-sup.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-09-27 16:44:31 +0000
+++ b/lisp/ChangeLog    2010-09-27 20:11:33 +0000
@@ -1,3 +1,7 @@
+2010-09-27  Stefan Monnier  <address@hidden>
+
+       * emacs-lisp/float-sup.el (e): Remove.
+
 2010-09-27  Teodor Zlatanov  <address@hidden>
 
        * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom

=== modified file 'lisp/emacs-lisp/float-sup.el'
--- a/lisp/emacs-lisp/float-sup.el      2010-09-23 19:00:31 +0000
+++ b/lisp/emacs-lisp/float-sup.el      2010-09-27 20:11:33 +0000
@@ -39,7 +39,6 @@
 (defconst pi float-pi "Obsolete since Emacs-23.3.  Use `float-pi' instead.")
 
 (defconst float-e (exp 1) "The value of e (2.7182818...).")
-(defvar e float-e "Obsolete since Emacs-23.3.  Use `float-e' instead.")
 
 (defconst degrees-to-radians (/ float-pi 180.0)
   "Degrees to radian conversion constant.")
@@ -49,10 +48,10 @@
 ;; these expand to a single multiply by a float when byte compiled
 
 (defmacro degrees-to-radians (x)
-  "Convert ARG from degrees to radians."
+  "Convert X from degrees to radians."
   (list '* degrees-to-radians x))
 (defmacro radians-to-degrees (x)
-  "Convert ARG from radians to degrees."
+  "Convert X from radians to degrees."
   (list '* radians-to-degrees x))
 
 (provide 'lisp-float-type)


reply via email to

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