summaryrefslogtreecommitdiffstats
path: root/refs.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'refs.lisp')
-rw-r--r--refs.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/refs.lisp b/refs.lisp
index de36c51..ea80514 100644
--- a/refs.lisp
+++ b/refs.lisp
@@ -24,11 +24,11 @@
;;; ... forms)
;;;
(defstruct ref
- (get-func)
- (set-func))
+ (get-func)
+ (set-func))
(defun deref (ref)
- (funcall (ref-get-func ref)))
+ (funcall (ref-get-func ref)))
(defun (setf deref) (val ref)
(funcall (ref-set-func ref) val))