changeset 247:2b31a375701b

Change midifile-import to call event constructors, not make-instance directly.
author Jamie Forth <j.forth@gold.ac.uk>
date Thu, 24 Feb 2011 11:23:18 +0000
parents 25b6b52eb770
children e5ff7d53f084
files implementations/midi/constructors.lisp
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/implementations/midi/constructors.lisp	Thu Feb 24 11:23:18 2011 +0000
+++ b/implementations/midi/constructors.lisp	Thu Feb 24 11:23:18 2011 +0000
@@ -5,7 +5,6 @@
 
 (defun make-midi-pitched-event (pitch-number velocity patch
 				channel track onset duration)
-  "FIXME: This is never called."
   (make-instance 'midi-pitched-event
 		 :number pitch-number
 		 :velocity velocity
@@ -17,7 +16,6 @@
 
 (defun make-midi-percussive-event (sound velocity patch
 				   channel track onset duration)
-  "FIXME: This is never called."
   (make-instance 'midi-percussive-event
 		 :sound sound
 		 :velocity velocity