mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
fix typo
This commit is contained in:
parent
44f96ffca7
commit
cbd18532cc
2 changed files with 4 additions and 3 deletions
|
|
@ -23,18 +23,18 @@
|
|||
`(set-on-change ,clog-obj
|
||||
(lambda (obj)
|
||||
(declare (ignore obj))
|
||||
(setf (,slot-name ,object) (value ,clog-obj)))))
|
||||
(setf (,accessor ,object) (value ,clog-obj)))))
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; link-element-to-slot ;;
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(defmacro link-element-to-slot (clog-obj object slot-name)
|
||||
(defmacro link-element-to-slot (clog-obj object accessor)
|
||||
"Link changes to (text CLOG-OBJ) to (ACESSOR OBJECT)"
|
||||
`(set-on-change ,clog-obj
|
||||
(lambda (obj)
|
||||
(declare (ignore obj))
|
||||
(setf (,slot-name ,object) (text ,clog-obj)))))
|
||||
(setf (,accessor ,object) (text ,clog-obj)))))
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; link-slot-to-form-element ;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue