Do not define a function which is not going to be reused.

This commit is contained in:
jjgarcia 2003-05-03 17:37:52 +00:00
parent 0c54b35b46
commit 162bd771bd

View file

@ -12,7 +12,7 @@
;;; ----------------------------------------------------------------------
;;; BOOT
(defun boot ()
(progn
(let* ((class (find-class 'class))
(built-in-class (find-class 'built-in-class)))
@ -137,6 +137,4 @@
(error 'slot-unbound :instance object :name slot-name))
))
(boot)
;;; ----------------------------------------------------------------------