mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 03:30:27 +02:00
Add a deprecated alias for $expt
* module/ice-9/deprecated.scm: Add alias for $expt. $expt was removed in commit6fc4d0124d
but no deprecated alias was added inad79736c68
like for all the other deprecated $sin, $cos, ... functions.
This commit is contained in:
parent
a6ea740b3c
commit
3cc21d7995
1 changed files with 5 additions and 0 deletions
|
@ -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.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue