guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-77-g3cc21d


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-77-g3cc21d7
Date: Mon, 19 Dec 2011 00:17:11 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=3cc21d7995313782f6def1789ca0150e95c8363f

The branch, stable-2.0 has been updated
       via  3cc21d7995313782f6def1789ca0150e95c8363f (commit)
      from  a6ea740b3ca1174cc4414ef9b03659fe259d0fe6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 3cc21d7995313782f6def1789ca0150e95c8363f
Author: Christian Persch <address@hidden>
Date:   Thu Nov 24 23:10:21 2011 +0100

    Add a deprecated alias for $expt
    
    * module/ice-9/deprecated.scm: Add alias for $expt. $expt was removed
      in commit 6fc4d0124d633d1b3ddc5af82967f23bd17556f8 but no deprecated
      alias was added in ad79736c68a803a59814fbfc0cb4b092c2b4cddf like for
      all the other deprecated $sin, $cos, ... functions.

-----------------------------------------------------------------------

Summary of changes:
 module/ice-9/deprecated.scm |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/module/ice-9/deprecated.scm b/module/ice-9/deprecated.scm
index f4ae2e3..4628bab 100644
--- a/module/ice-9/deprecated.scm
+++ b/module/ice-9/deprecated.scm
@@ -26,6 +26,7 @@
             $sqrt
             $abs
             $exp
+            $expt
             $log
             $sin
             $cos
@@ -300,6 +301,10 @@
   (issue-deprecation-warning
    "`$exp' is deprecated.  Use `exp' instead.")
   (exp z))
+(define ($expt z1 z2)
+  (issue-deprecation-warning
+   "`$expt' is deprecated.  Use `expt' instead.")
+  (expt z1 z2))
 (define ($log z)
   (issue-deprecation-warning
    "`$log' is deprecated.  Use `log' instead.")


hooks/post-receive
-- 
GNU Guile



reply via email to

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