annotate implementations/tabcode/classes.lisp @ 171:98443d36ac6a
Fixed sequence:make-sequence-like :around method
The :around method clobbered the %data slot, as Christophe put it.
darcs-hash:20080123180914-990ec-629ecf5d60363512e6831800bb1e61dbcb8f94f5.gz
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Wed, 23 Jan 2008 18:09:14 +0000 |
parents |
fd85f52d9f9d |
children |
88089258e08d |
rev |
line source |
c@43
|
1 (cl:in-package #:amuse-tabcode)
|
c@43
|
2
|
d@136
|
3 (defclass tabcode-composition (amuse:standard-composition)
|
c@43
|
4 ())
|
c@43
|
5
|
d@136
|
6 (defclass tabcode-pitched-event (standard-chromatic-pitched-event)
|
c@43
|
7 ((course :initarg :course :reader course)
|
csr21@58
|
8 (fret :initarg :fret :reader fret)
|
c@43
|
9 (word :initarg :word :reader word)))
|