diff options
Diffstat (limited to 'src/interp/macros.lisp')
-rw-r--r-- | src/interp/macros.lisp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/interp/macros.lisp b/src/interp/macros.lisp index 0bc2adb5..3fadfeac 100644 --- a/src/interp/macros.lisp +++ b/src/interp/macros.lisp @@ -235,16 +235,12 @@ (defun remdup (l) (remove-duplicates l :test #'equalp)) -(DEFUN GETTAIL (X L) (member X L :test #'equal)) - ; 15.6 Association Lists (defun QLASSQ (p a-list) (cdr (assq p a-list))) (define-function 'LASSQ #'QLASSQ) -(defun pair (x y) (mapcar #'cons x y)) - ;;; Operations on Association Sets (AS) (defun AS-INSERT (A B L) |