aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/strap/MONOID-.lsp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-02-24 20:16:37 +0000
committerdos-reis <gdr@axiomatics.org>2011-02-24 20:16:37 +0000
commit66f5a47122d91ad3a395cc02549908b8daf1bdd8 (patch)
tree4e68e616461527448a43a18318c292f7bb2915d8 /src/algebra/strap/MONOID-.lsp
parent35e4595e5312af1ad327ae7fda4eefa0d60d31c6 (diff)
downloadopen-axiom-66f5a47122d91ad3a395cc02549908b8daf1bdd8.tar.gz
Rename getShellEntry to shellEntry now that it is a macro accessor that designate a place (usable in SETF).
Diffstat (limited to 'src/algebra/strap/MONOID-.lsp')
-rw-r--r--src/algebra/strap/MONOID-.lsp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/algebra/strap/MONOID-.lsp b/src/algebra/strap/MONOID-.lsp
index 625ae8e5..e04b7bc3 100644
--- a/src/algebra/strap/MONOID-.lsp
+++ b/src/algebra/strap/MONOID-.lsp
@@ -14,19 +14,19 @@
|MONOID-;**;SNniS;4|))
(DEFUN |MONOID-;one?;SB;1| (|x| $)
- (SPADCALL |x| (|spadConstant| $ 7) (|getShellEntry| $ 9)))
+ (SPADCALL |x| (|spadConstant| $ 7) (|shellEntry| $ 9)))
(DEFUN |MONOID-;sample;S;2| ($) (|spadConstant| $ 7))
(DEFUN |MONOID-;recip;SU;3| (|x| $)
(COND
- ((SPADCALL |x| (|getShellEntry| $ 12)) (CONS 0 |x|))
+ ((SPADCALL |x| (|shellEntry| $ 12)) (CONS 0 |x|))
(T (CONS 1 "failed"))))
(DEFUN |MONOID-;**;SNniS;4| (|x| |n| $)
(COND
((ZEROP |n|) (|spadConstant| $ 7))
- (T (SPADCALL |x| |n| (|getShellEntry| $ 19)))))
+ (T (SPADCALL |x| |n| (|shellEntry| $ 19)))))
(DEFUN |Monoid&| (|#1|)
(LET* ((|dv$1| (|devaluate| |#1|)) (|dv$| (LIST '|Monoid&| |dv$1|))