* lunit.el (lunit-make-test-suite-from-class): Replace #' with `function'.
authoryamaoka <yamaoka>
Fri, 15 Dec 2000 08:38:46 +0000 (08:38 +0000)
committeryamaoka <yamaoka>
Fri, 15 Dec 2000 08:38:46 +0000 (08:38 +0000)
lunit.el

index 7debb2a..f3ed001 100644 (file)
--- a/lunit.el
+++ b/lunit.el
@@ -278,7 +278,7 @@ TESTS holds a number of instances of `lunit-test'."
                (null (get symbol 'luna-method-qualifier)))
           (push (lunit-make-test-case class symbol) tests)))
      (luna-class-obarray (luna-find-class class)))
-    (apply #'lunit-make-test-suite tests)))
+    (apply (function lunit-make-test-suite) tests)))
 
 (defun lunit (test)
   "Run TEST and display the result."